Skip to content

Commit 28a90a6

Browse files
authored
Fix ProxySQLRule waiting strategy (#1537)
Previous message could not be seen in latest versions of the image (on CI) Signed-off-by: Thomas Segismont <[email protected]>
1 parent 9956c66 commit 28a90a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vertx-mysql-client/src/test/java/io/vertx/tests/mysqlclient/junit/ProxySQLRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected void before() throws Throwable {
2929
createContainerCmd.getHostConfig().withNetworkMode(mySQLRule.network());
3030
})
3131
.withExposedPorts(6032, 6033, 6070)
32-
.waitingFor(Wait.forLogMessage(".*Latest ProxySQL version available.*\\n", 1));
32+
.waitingFor(Wait.forLogMessage(".*Started Monitor scheduler thread for PgSQL servers.*\\n", 1));
3333

3434
proxySql.start();
3535

0 commit comments

Comments
 (0)