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 ce57df6 commit 1469b22Copy full SHA for 1469b22
modules/neo4j/src/main/java/org/testcontainers/containers/Neo4jContainer.java
@@ -91,7 +91,7 @@ public Neo4jContainer(final DockerImageName dockerImageName) {
91
dockerImageName.assertCompatibleWith(DEFAULT_IMAGE_NAME);
92
93
WaitStrategy waitForBolt = new LogMessageWaitStrategy()
94
- .withRegEx(String.format(".*Bolt enabled on 0\\.0\\.0\\.0:%d\\.\n", DEFAULT_BOLT_PORT));
+ .withRegEx(String.format(".*Bolt enabled on .*:%d\\.\n", DEFAULT_BOLT_PORT));
95
WaitStrategy waitForHttp = new HttpWaitStrategy()
96
.forPort(DEFAULT_HTTP_PORT)
97
.forStatusCodeMatching(response -> response == HTTP_OK);
0 commit comments