Browse Source

Fixed hostname

pull/6/head
Ryan Baxter 8 years ago
parent
commit
382988a06a
  1. 2
      spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/feign/ribbon/FeignRibbonClientRetryTests.java

2
spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/feign/ribbon/FeignRibbonClientRetryTests.java

@ -138,7 +138,7 @@ class LocalRibbonClientConfiguration { @@ -138,7 +138,7 @@ class LocalRibbonClientConfiguration {
@Bean
public ServerList<Server> ribbonServerList() {
return new StaticServerList<>(new Server("ocr-participants-cf-new.cfapps.io", 80),
return new StaticServerList<>(new Server("mybadhost", 80),
new Server("mybadhost2", 10002),
new Server("mybadhost3", 10003), new Server("localhost", this.port));
}

Loading…
Cancel
Save