Hi,
JDK8 we don't do join() on "dispatcherThread" in stop(). We need to
find out why we introduce the below code.
####################################################
if (dispatcherThread != null) {
try {
dispatcherThread.join();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
logger.log (Level.TRACE, "ServerImpl.stop: ", e);
}
}
#########################################################
Thanks for confirming, Mark. dispatcherThread was introduced with a
Windows XP specific fix in version 9:
https://bugs.openjdk.java.net/browse/JDK-8015692
Regards,
Julia