13
0

Increasing thread safety

Dieser Commit ist enthalten in:
Lixfel 2019-12-29 11:21:41 +01:00
Ursprung 70198d0962
Commit 1965a544cb

Datei anzeigen

@ -151,7 +151,9 @@ public class Subserver implements Runnable {
fatalError(); fatalError();
Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
} finally { } finally {
serverList.remove(this); synchronized (serverList){
serverList.remove(this);
}
ProxyServer.getInstance().getServers().remove(serverName); ProxyServer.getInstance().getServers().remove(serverName);
shutdownCallback.run(); shutdownCallback.run();
} }