We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3614e3c commit cf133b5Copy full SHA for cf133b5
acceptance-test/src/test/java/br/com/helpdev/atdd/DefaultContainerStarterTest.java
@@ -67,7 +67,7 @@ private static GenericContainer<?> buildAppContainer(final Startable... dependsO
67
.withEnv("MYSQL_URL", "jdbc:mysql://testdb:" + MySQLContainer.MYSQL_PORT + "/test?autoReconnect=true&useSSL=false")
68
.withExposedPorts(8080)
69
//TODO: change to: '/actuator/health' if you use spring
70
- .waitingFor(Wait.forHttp("/actuator/health").forStatusCode(200))
+ .waitingFor(Wait.forHttp("/q/health/ready").forStatusCode(200))
71
.withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger("APP_CONTAINER")));
72
}
73
0 commit comments