Finished moving thread pool size to config

This commit is contained in:
Nicolas Znamenski 2019-09-22 18:15:27 -04:00
parent 550d94c4c3
commit 1d4837f5e0
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,6 @@ public class GeyserConnector implements Connector {
instance = this;
this.generalThreadPool = Executors.newScheduledThreadPool(32);
this.logger = GeyserLogger.DEFAULT;
logger.info("******************************************");
@ -123,6 +122,7 @@ public class GeyserConnector implements Connector {
shutdown();
}
this.generalThreadPool = Executors.newScheduledThreadPool(config.getGeneralThreadPool());
ConsoleCommandReader consoleReader = new ConsoleCommandReader(this);
consoleReader.startConsole();