KEYCLOAK-14510 Properly close Response object
This commit is contained in:
parent
bed664e4fe
commit
1c4a2db8e1
4 changed files with 4 additions and 4 deletions
|
@ -266,7 +266,7 @@ public class UsersTest extends AbstractAdminTest {
|
||||||
String policyName = "test-policy";
|
String policyName = "test-policy";
|
||||||
policy.setName(policyName);
|
policy.setName(policyName);
|
||||||
policy.setUsers(Collections.singleton(testUserId));
|
policy.setUsers(Collections.singleton(testUserId));
|
||||||
authorizationResource.policies().user().create(policy);
|
authorizationResource.policies().user().create(policy).close();
|
||||||
PolicyRepresentation policyRepresentation = authorizationResource.policies().findByName(policyName);
|
PolicyRepresentation policyRepresentation = authorizationResource.policies().findByName(policyName);
|
||||||
//add the policy to grp1
|
//add the policy to grp1
|
||||||
Optional<GroupRepresentation> optional = groups.stream().filter(g -> g.getName().equals("grp1")).findFirst();
|
Optional<GroupRepresentation> optional = groups.stream().filter(g -> g.getName().equals("grp1")).findFirst();
|
||||||
|
|
|
@ -91,7 +91,7 @@ public class AggregatePolicyManagementTest extends AbstractAuthorizationSettings
|
||||||
policyC.setName("Policy C");
|
policyC.setName("Policy C");
|
||||||
policyC.addUser("test");
|
policyC.addUser("test");
|
||||||
|
|
||||||
policies.user().create(policyC);
|
policies.user().create(policyC).close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -75,7 +75,7 @@ public class ResourcePermissionManagementTest extends AbstractAuthorizationSetti
|
||||||
policyC.setName("Policy C");
|
policyC.setName("Policy C");
|
||||||
policyC.addUser("test");
|
policyC.addUser("test");
|
||||||
|
|
||||||
policies.user().create(policyC);
|
policies.user().create(policyC).close();
|
||||||
|
|
||||||
ResourcesResource resources = authorization.resources();
|
ResourcesResource resources = authorization.resources();
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@ public class ScopePermissionManagementTest extends AbstractAuthorizationSettings
|
||||||
policyC.setName("Policy C");
|
policyC.setName("Policy C");
|
||||||
policyC.addUser("test");
|
policyC.addUser("test");
|
||||||
|
|
||||||
policies.user().create(policyC);
|
policies.user().create(policyC).close();
|
||||||
|
|
||||||
authorization.scopes().create(new ScopeRepresentation("Scope A"));
|
authorization.scopes().create(new ScopeRepresentation("Scope A"));
|
||||||
authorization.scopes().create(new ScopeRepresentation("Scope B"));
|
authorization.scopes().create(new ScopeRepresentation("Scope B"));
|
||||||
|
|
Loading…
Reference in a new issue