[quarkus-next] Fix operator controller stalling after JOSDK 5.3.0 event filtering upgrade (#47474)

Closes: #47473

Signed-off-by: Peter Zaoral <pzaoral@redhat.com>
This commit is contained in:
Peter Zaoral 2026-03-27 09:34:27 +01:00 committed by GitHub
parent 8864cdcb5e
commit ca658e8a4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,7 +135,7 @@ public class KeycloakController implements Reconciler<Keycloak> {
.endMetadata()
.withSpec(kc.getSpec())
.build();
return UpdateControl.patchResource(patchedKc);
return UpdateControl.<Keycloak>patchResource(patchedKc).rescheduleAfter(0L);
}
var existingDeployment = context.getSecondaryResource(StatefulSet.class).filter(ss -> ss.hasOwnerReferenceFor(kc)).orElse(null);