BAEL-4425: Change port numbers (#9679)

This commit is contained in:
kwoyke 2020-07-11 14:56:21 +02:00 committed by GitHub
parent c7549ff638
commit 621301b713
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ weather-service:
ribbon:
eureka:
enabled: false
listOfServers: http://localhost:8081, http://localhost:8082
listOfServers: http://localhost:8021, http://localhost:8022
ServerListRefreshInterval: 5000
MaxAutoRetries: 3
MaxAutoRetriesNextServer: 1

View File

@ -24,8 +24,8 @@ public class RibbonRetryFailureIntegrationTest {
@BeforeAll
public static void setup() {
weatherServiceInstance1 = startApp(8081);
weatherServiceInstance2 = startApp(8082);
weatherServiceInstance1 = startApp(8021);
weatherServiceInstance2 = startApp(8022);
}
@AfterAll

View File

@ -25,8 +25,8 @@ public class RibbonRetrySuccessIntegrationTest {
@BeforeAll
public static void setup() {
weatherServiceInstance1 = startApp(8081);
weatherServiceInstance2 = startApp(8082);
weatherServiceInstance1 = startApp(8021);
weatherServiceInstance2 = startApp(8022);
}
private static ConfigurableApplicationContext startApp(int port) {