From 4fd0d54ee78f49a79263c9a0c5154aa4ec4fd6b6 Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 1 Jul 2020 03:32:26 -0400 Subject: [PATCH] Fix server not stopping when eula not agreed yet --- ...12-Improve-Server-Thread-Pool-and-Thread-Priorities.patch | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Spigot-Server-Patches/0312-Improve-Server-Thread-Pool-and-Thread-Priorities.patch b/Spigot-Server-Patches/0312-Improve-Server-Thread-Pool-and-Thread-Priorities.patch index 4a92754429..692ecd8627 100644 --- a/Spigot-Server-Patches/0312-Improve-Server-Thread-Pool-and-Thread-Priorities.patch +++ b/Spigot-Server-Patches/0312-Improve-Server-Thread-Pool-and-Thread-Priorities.patch @@ -25,10 +25,10 @@ index b13d8ec9aa0a51d5432129f1b0ecef3beb5b7276..f4c93a65c28eeca4a07aaf9b00507d5c } diff --git a/src/main/java/net/minecraft/server/ServerWorkerThread.java b/src/main/java/net/minecraft/server/ServerWorkerThread.java new file mode 100644 -index 0000000000000000000000000000000000000000..59cfb76d737f923c7e424743ef370c969ae14c26 +index 0000000000000000000000000000000000000000..1a94648cb79c8f2889aacb5fb21dc07ad84a4a6b --- /dev/null +++ b/src/main/java/net/minecraft/server/ServerWorkerThread.java -@@ -0,0 +1,24 @@ +@@ -0,0 +1,25 @@ +package net.minecraft.server; + +import java.util.concurrent.CompletionException; @@ -40,6 +40,7 @@ index 0000000000000000000000000000000000000000..59cfb76d737f923c7e424743ef370c96 + super(target, "Server-Worker-" + threadId.getAndIncrement()); + setPriority(Thread.NORM_PRIORITY-1); // Deprioritize over main + this.setUncaughtExceptionHandler((thread, throwable) -> { ++ thread.setDaemon(true); + if (throwable instanceof CompletionException) { + throwable = throwable.getCause(); + }