3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-12-24 15:20:35 +01:00

Ensure synchronous shutdown if the user kills the process.

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-10-02 00:23:01 -04:00
Ursprung 65cab85b50
Commit cb74210cd8

Datei anzeigen

@ -456,8 +456,12 @@ public class VelocityServer implements ProxyServer, ForwardingAudience {
}
};
Thread thread = new Thread(shutdownProcess);
thread.start();
if (explicitExit) {
Thread thread = new Thread(shutdownProcess);
thread.start();
} else {
shutdownProcess.run();
}
}
/**