Trace a message on incomplete proper server finish when killing process

pull/258/head
luccioman 6 years ago
parent 43d86be37b
commit 595e144797

@ -915,7 +915,10 @@ class shutdownHookThread extends Thread {
/* Main thread will release the shutdownSemaphore once completely terminated.
* We do not wait indefinitely as the application is supposed here to quickly terminate */
this.shutdownSemaphore.tryAcquire(30, TimeUnit.SECONDS);
final int maxWaitTime = 30;
if(!this.shutdownSemaphore.tryAcquire(maxWaitTime, TimeUnit.SECONDS)) {
System.out.println("Shutting down JVM. Main thread did not completely finish within " + maxWaitTime + " seconds.");
}
}
} catch (final Exception e) {
ConcurrentLog.severe("SHUTDOWN","Unexpected error. " + e.getClass().getName(),e);

Loading…
Cancel
Save