Merge branch 'patch-30' into 'dev'

updated exception

See merge request morningstar/Arcturus-Community!206
This commit is contained in:
Mike 2020-06-01 09:35:15 -04:00
commit ff912dccc2

View File

@ -67,7 +67,7 @@ public abstract class Server {
try {
this.workerGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync();
this.bossGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync();
} catch (Exception e) {
} catch(InterruptedException e) {
LOGGER.error("Exception during {} shutdown... HARD STOP", this.name, e);
}
LOGGER.info("GameServer Stopped!");