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:
parent
e30230488e
commit
6ce89670b5
1 changed files with 2 additions and 2 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue