From c8df400f01514f9e23a6c6115add576025ec56fe Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Wed, 4 Dec 2019 15:38:48 -0500 Subject: [PATCH] fixes uri format --- .../cloud/gateway/filter/factory/HystrixTestConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/HystrixTestConfig.java b/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/HystrixTestConfig.java index e8c1888d..81d28bd2 100644 --- a/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/HystrixTestConfig.java +++ b/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/HystrixTestConfig.java @@ -75,7 +75,7 @@ public class HystrixTestConfig { .route("hystrix_connection_failure", r -> r.host("**.hystrixconnectfail.org") .filters(f -> f.prefixPath("/httpbin").hystrix(config -> { - })).uri("lb:badservice")) + })).uri("lb://badservice")) /* * This is a route encapsulated in a hystrix command that is ready to wait * for a response far longer than the underpinning WebClient would.