fix: relaxing the ready=false reason to make the test less flaky

closes: #39124

Signed-off-by: Steve Hawkins <shawkins@redhat.com>
(cherry picked from commit a39adf7b4fffa7fd8269324f7f7772ca9db62cc8)
This commit is contained in:
Steven Hawkins 2025-05-02 08:10:11 -04:00 committed by GitHub
parent 8795cdefca
commit 8d74eaf5d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -599,7 +599,7 @@ public class KeycloakDeploymentTest extends BaseOperatorTest {
var updateCondition = k8sclient.resource(kc).informOnCondition(kcs -> {
try {
assertKeycloakStatusCondition(kcs.get(0), KeycloakStatusCondition.READY, false, "Performing Keycloak update");
assertKeycloakStatusCondition(kcs.get(0), KeycloakStatusCondition.READY, false, null);
return true;
} catch (AssertionError e) {
return false;