Workaround for lazy loaded collections for RealmEntity

---
Quarkus3 branch sync no. 13 (11.4.2023)
Resolved conflicts:
keycloak/model/jpa/src/main/java/org/keycloak/models/jpa/JpaRealmProvider.java - Modified
This commit is contained in:
Alexander Schwartz 2023-03-16 13:25:46 +01:00 committed by Václav Muzikář
parent 9796e69d8d
commit 28975b950d

View file

@ -166,6 +166,12 @@ public class JpaRealmProvider implements RealmProvider, ClientProvider, ClientSc
if (realm == null) {
return false;
}
// Workaround tracked by issue https://github.com/keycloak/keycloak/pull/19069
// As of Hibernate 6.2.0.CR3, after the em.refresh(entity) the lazily loaded collections in realm don't load anymore, instead there is a
// LazyInitializationException. As a workaround, comment out the refresh call.
// em.refresh(realm);
final RealmAdapter adapter = new RealmAdapter(session, em, realm);
session.users().preRemove(adapter);