Fix occasional server shutdown issue due to non-daemon thread

This commit is contained in:
Mike Primm 2020-06-07 21:07:10 -05:00
parent a123048053
commit f911752c0c
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ public class AsynchronousQueue<T> {
running();
}
});
thread.setDaemon(true);
thread.start();
try {
if(!normalprio)