aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-08-08 23:47:03 +0100
committerJustin Clark-Casey (justincc)2014-08-08 23:47:03 +0100
commit36f01dce2da967f62bc75ff82011d155318b1f25 (patch)
treeace5c1cba1e0076e813ef1d212138e362ac364b2 /OpenSim/Region/Application
parentReduce default rotation AgentUpdate output sensitivity to a setting that cuts... (diff)
downloadopensim-SC_OLD-36f01dce2da967f62bc75ff82011d155318b1f25.zip
opensim-SC_OLD-36f01dce2da967f62bc75ff82011d155318b1f25.tar.gz
opensim-SC_OLD-36f01dce2da967f62bc75ff82011d155318b1f25.tar.bz2
opensim-SC_OLD-36f01dce2da967f62bc75ff82011d155318b1f25.tar.xz
Change MaxPoolThreads default in code as well from 15 to 300
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 3f3ee11..e7f68c2 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -115,7 +115,7 @@ namespace OpenSim
115 Util.FireAndForgetMethod = asyncCallMethod; 115 Util.FireAndForgetMethod = asyncCallMethod;
116 116
117 stpMinThreads = startupConfig.GetInt("MinPoolThreads", 15); 117 stpMinThreads = startupConfig.GetInt("MinPoolThreads", 15);
118 stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 15); 118 stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 300);
119 m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) "); 119 m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) ");
120 } 120 }
121 121