forked from GeyserMC/Geyser
Finished moving thread pool size to config
This commit is contained in:
parent
550d94c4c3
commit
1d4837f5e0
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,6 @@ public class GeyserConnector implements Connector {
|
||||||
|
|
||||||
instance = this;
|
instance = this;
|
||||||
|
|
||||||
this.generalThreadPool = Executors.newScheduledThreadPool(32);
|
|
||||||
this.logger = GeyserLogger.DEFAULT;
|
this.logger = GeyserLogger.DEFAULT;
|
||||||
|
|
||||||
logger.info("******************************************");
|
logger.info("******************************************");
|
||||||
|
@ -123,6 +122,7 @@ public class GeyserConnector implements Connector {
|
||||||
shutdown();
|
shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.generalThreadPool = Executors.newScheduledThreadPool(config.getGeneralThreadPool());
|
||||||
ConsoleCommandReader consoleReader = new ConsoleCommandReader(this);
|
ConsoleCommandReader consoleReader = new ConsoleCommandReader(this);
|
||||||
consoleReader.startConsole();
|
consoleReader.startConsole();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue