KEYCLOAK-2278
NoSuchMethodError org.infinispan.Cache.entrySet() in EAP6 server overlay
This commit is contained in:
parent
a6c852603e
commit
bc14cade62
1 changed files with 2 additions and 5 deletions
|
@ -81,11 +81,8 @@ public class InfinispanUserCache implements UserCache {
|
|||
@Override
|
||||
public void invalidateRealmUsers(String realmId) {
|
||||
logger.tracev("Invalidating users for realm {0}", realmId);
|
||||
for (Map.Entry<String, CachedUser> u : cache.entrySet()) {
|
||||
if (u.getValue().getRealm().equals(realmId)) {
|
||||
cache.remove(u.getKey());
|
||||
}
|
||||
}
|
||||
|
||||
cache.clear();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue