From 4224819d98a720666157840ab1c4981aa35c8a32 Mon Sep 17 00:00:00 2001 From: "Benjamin Howe (Wise)" Date: Wed, 13 Aug 2025 11:31:27 +0100 Subject: [PATCH] Fixes typo in httpbin domain Signed-off-by: Benjamin Howe (Wise) --- docs/src/main/asciidoc/sagan-index.adoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/main/asciidoc/sagan-index.adoc b/docs/src/main/asciidoc/sagan-index.adoc index f8dc3a9807..dfd6707d76 100644 --- a/docs/src/main/asciidoc/sagan-index.adoc +++ b/docs/src/main/asciidoc/sagan-index.adoc @@ -73,25 +73,25 @@ public class DemogatewayApplication { // @formatter:off return route("path_route") .GET("/get", http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .build().and(route("host_route") .route(host("*.myhost.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .build().and(route("rewrite_route") .route(host("*.rewrite.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .before(rewritePath("/foo/(?.*)", "/${segment}")) .build().and(route("circuitbreaker_route") .route(host("*.circuitbreaker.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .filter(circuitBreaker("slowcmd")) .build().and(route("circuitbreaker_fallback_route") .route(host("*.circuitbreakerfallback.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .filter(circuitBreaker(c -> c.setId("slowcmd").setFallbackUri("forward:/fallback"))) .build().and(route("limit_route") .route(host("*.limited.org").and(path("/anything/**")), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .filter(rateLimit(c -> c.setCapacity(10).setPeriod(Duration.ofSeconds(1)).setKeyResolver(request -> request.headers().firstHeader("X-TokenId")))) .build())))));