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 9608bd9 commit 874a006Copy full SHA for 874a006
src/Testcontainers.Keycloak/KeycloakBuilder.cs
@@ -89,6 +89,7 @@ public override KeycloakContainer Build()
89
var isMajorVersionGreaterOrEqual25 = image.MatchLatestOrNightly() || image.MatchVersion(predicate);
90
91
var waitStrategy = Wait.ForUnixContainer()
92
+ .UntilMessageIsLogged("Added user '[^']+' to realm '[^']+'|Created temporary admin user with username \\S+")
93
.UntilHttpRequestIsSucceeded(request =>
94
request.ForPath("/health/ready").ForPort(isMajorVersionGreaterOrEqual25 ? KeycloakHealthPort : KeycloakPort));
95
0 commit comments