mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-25 09:59:15 +00:00
default queueSize to 4096
This commit is contained in:
@@ -39,7 +39,7 @@ public class AsyncTargetFinding extends ConfigModules {
|
||||
alertOther = config.getBoolean(getBasePath() + ".async-alert-other", true);
|
||||
searchBlock = config.getBoolean(getBasePath() + ".async-search-block", true);
|
||||
searchEntity = config.getBoolean(getBasePath() + ".async-search-entity", true);
|
||||
queueSize = config.getInt(getBasePath() + ".queue-size", 100_000);
|
||||
queueSize = config.getInt(getBasePath() + ".queue-size", 4096);
|
||||
if (queueSize <= 0) {
|
||||
queueSize = 4096;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user