KEYCLOAK-11313 Ignore failure of uninstalling arquillian bundle

This commit is contained in:
mhajas 2019-09-23 08:58:31 +02:00 committed by Hynek Mlnařík
parent ff77b549ec
commit b126c81ae3

View file

@ -198,7 +198,12 @@ public class CustomFuseContainer<T extends KarafManagedContainerConfiguration> e
@Override
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();
}