Skip to content

Commit

Permalink
increase timeouts in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SteKoe committed Jan 29, 2021
1 parent 2ce757d commit f976334
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -72,7 +72,7 @@ public abstract class AbstractInstancesProxyControllerIntegrationTest {

@BeforeAll
public static void setUp() {
StepVerifier.setDefaultTimeout(Duration.ofSeconds(10));
StepVerifier.setDefaultTimeout(Duration.ofSeconds(20));
}

@AfterAll
Expand Down
Expand Up @@ -36,7 +36,7 @@ public class InstancesProxyControllerIntegrationTest extends AbstractInstancesPr
public void setUpClient() {
context = new SpringApplicationBuilder().sources(AdminReactiveApplicationTest.TestAdminApplication.class)
.web(WebApplicationType.REACTIVE)
.run("--server.port=0", "--spring.boot.admin.monitor.default-timeout=2500");
.run("--server.port=0", "--spring.boot.admin.monitor.default-timeout=5000");

super.setUpClient(context);
}
Expand Down

0 comments on commit f976334

Please sign in to comment.