Change MaxPoolThreads default in code as well from 15 to 300

This commit is contained in:
Justin Clark-Casey (justincc)
2014-08-08 23:47:03 +01:00
parent 91f3be71e3
commit 36f01dce2d

View File

@@ -115,7 +115,7 @@ namespace OpenSim
Util.FireAndForgetMethod = asyncCallMethod;
stpMinThreads = startupConfig.GetInt("MinPoolThreads", 15);
stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 15);
stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 300);
m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) ");
}