KEYCLOAK-5711 Adapter test module for Wildfly has compilation error
This commit is contained in:
parent
00ea849cb9
commit
bd706418c9
1 changed files with 2 additions and 10 deletions
|
@ -59,13 +59,9 @@ public class WildflyConsoleProtectionTest extends AbstractAdapterTest {
|
|||
}
|
||||
|
||||
@Before
|
||||
public void beforeAuthTest() throws IOException, OperationException {
|
||||
super.beforeAuthTest();
|
||||
public void beforeConsoleProtectionTest() throws IOException, OperationException {
|
||||
|
||||
OnlineManagementClient clientWorkerNodeClient = null;
|
||||
|
||||
try {
|
||||
clientWorkerNodeClient = AppServerTestEnricher.getManagementClient();
|
||||
try (OnlineManagementClient clientWorkerNodeClient = AppServerTestEnricher.getManagementClient()) {
|
||||
|
||||
Operations operations = new Operations(clientWorkerNodeClient);
|
||||
|
||||
|
@ -94,10 +90,6 @@ public class WildflyConsoleProtectionTest extends AbstractAdapterTest {
|
|||
clientWorkerNodeClient.execute("reload");
|
||||
} catch (CliException cause) {
|
||||
throw new RuntimeException("Failed to configure app server", cause);
|
||||
} finally {
|
||||
if (clientWorkerNodeClient != null) {
|
||||
clientWorkerNodeClient.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue