Flaky test: org.keycloak.testsuite.model.user.UserModelTest#testAddRemoveUserConcurrent

Closes #30236

Signed-off-by: Pedro Igor <pigor.craveiro@gmail.com>
This commit is contained in:
Pedro Igor 2024-07-23 14:02:08 -03:00 committed by Alexander Schwartz
parent e30230488e
commit 6ce89670b5

View file

@ -726,11 +726,11 @@ public class CachedRealm extends AbstractExtendableRevisioned {
}
public MultivaluedMap<String, ComponentModel> getComponentsByParent() {
return componentsByParent;
return new MultivaluedHashMap<>(componentsByParent);
}
public MultivaluedMap<String, ComponentModel> getComponentsByParentAndType() {
return componentsByParentAndType;
return new MultivaluedHashMap<>(componentsByParentAndType);
}
public Map<String, ComponentModel> getComponents() {