diff options
-rw-r--r-- | OpenSim/Framework/Util.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index b8b78fa..d807e2a 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -1850,7 +1850,7 @@ namespace OpenSim.Framework | |||
1850 | 1850 | ||
1851 | STPStartInfo startInfo = new STPStartInfo(); | 1851 | STPStartInfo startInfo = new STPStartInfo(); |
1852 | startInfo.ThreadPoolName = "Util"; | 1852 | startInfo.ThreadPoolName = "Util"; |
1853 | startInfo.IdleTimeout = 2000; | 1853 | startInfo.IdleTimeout = 20000; |
1854 | startInfo.MaxWorkerThreads = maxThreads; | 1854 | startInfo.MaxWorkerThreads = maxThreads; |
1855 | startInfo.MinWorkerThreads = minThreads; | 1855 | startInfo.MinWorkerThreads = minThreads; |
1856 | 1856 | ||
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index e1e3d87..369e79d 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -113,8 +113,8 @@ namespace OpenSim | |||
113 | if (!String.IsNullOrEmpty(asyncCallMethodStr) && Utils.EnumTryParse<FireAndForgetMethod>(asyncCallMethodStr, out asyncCallMethod)) | 113 | if (!String.IsNullOrEmpty(asyncCallMethodStr) && Utils.EnumTryParse<FireAndForgetMethod>(asyncCallMethodStr, out asyncCallMethod)) |
114 | Util.FireAndForgetMethod = asyncCallMethod; | 114 | Util.FireAndForgetMethod = asyncCallMethod; |
115 | 115 | ||
116 | stpMinThreads = startupConfig.GetInt("MinPoolThreads", 15); | 116 | stpMinThreads = startupConfig.GetInt("MinPoolThreads", 2 ); |
117 | stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 15); | 117 | stpMaxThreads = startupConfig.GetInt("MaxPoolThreads", 25); |
118 | m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) "); | 118 | m_consolePrompt = startupConfig.GetString("ConsolePrompt", @"Region (\R) "); |
119 | } | 119 | } |
120 | 120 | ||