mirror of
https://github.com/keycloak/keycloak.git
synced 2026-04-15 22:09:46 -04:00
[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:
parent
8864cdcb5e
commit
ca658e8a4a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue