BAEL-4425: Change port numbers (#9679)
This commit is contained in:
parent
c7549ff638
commit
621301b713
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue