Skip to content

Commit

Permalink
Fix CosmosDBEmulatorContainer wait strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Sep 19, 2022
1 parent 1f3f4c2 commit 2a9bb51
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -23,7 +23,7 @@ public CosmosDBEmulatorContainer(final DockerImageName dockerImageName) {
super(dockerImageName);
dockerImageName.assertCompatibleWith(DEFAULT_IMAGE_NAME);
withExposedPorts(PORT);
waitingFor(Wait.forLogMessage("(?s).*Started\\r\\n$", 1));
waitingFor(Wait.forLogMessage("(?s).*Started\\n$", 1));
}

/**
Expand Down

0 comments on commit 2a9bb51

Please sign in to comment.