KEYCLOAK-11313 Ignore failure of uninstalling arquillian bundle
This commit is contained in:
parent
ff77b549ec
commit
b126c81ae3
1 changed files with 6 additions and 1 deletions
|
@ -198,7 +198,12 @@ public class CustomFuseContainer<T extends KarafManagedContainerConfiguration> e
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stop() throws LifecycleException {
|
public void stop() throws LifecycleException {
|
||||||
super.stop();
|
try {
|
||||||
|
super.stop();
|
||||||
|
} catch (LifecycleException ex) {
|
||||||
|
log.info("Couldn't uninstall arquillian bundle. This should be non-blocking issue, proceeding with destroying karaf process.");
|
||||||
|
}
|
||||||
|
|
||||||
destroyKarafProcess();
|
destroyKarafProcess();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue