Merge pull request #330 from gnodet/i276

Do not run server threads as daemon as it causes problems with the exec-maven-plugin (#276)
This commit is contained in:
Guillaume Nodet
2021-05-18 16:27:58 +02:00
committed by GitHub
9 changed files with 358 additions and 1 deletions

View File

@@ -214,7 +214,6 @@ public class Server implements AutoCloseable, Runnable {
static class DaemonThread extends Thread {
public DaemonThread(Runnable target) {
super(target);
setDaemon(true);
}
}