diff options
author | Melanie | 2009-10-22 04:02:26 +0100 |
---|---|---|
committer | Melanie | 2009-10-22 04:02:26 +0100 |
commit | 8ce4fd7234bd460652f6159a3b7a21d2bebee05d (patch) | |
tree | 790e26802bcf41a286a98b734b57ae7b5dc9ed8f /OpenSim/Region/Application/OpenSim.cs | |
parent | Add MaxPoolThreads in startup to limit the size of the thread pool used (diff) | |
download | opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.zip opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.tar.gz opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.tar.bz2 opensim-SC_OLD-8ce4fd7234bd460652f6159a3b7a21d2bebee05d.tar.xz |
Reduce the default pool threads to 15 (from 30) and the minimum from 5 to 2
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 42e2a1e..c9cec75 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -67,7 +67,7 @@ namespace OpenSim | |||
67 | 67 | ||
68 | IConfig startupConfig = m_config.Source.Configs["Startup"]; | 68 | IConfig startupConfig = m_config.Source.Configs["Startup"]; |
69 | 69 | ||
70 | Util.SetMaxThreads(startupConfig.GetInt("MaxPoolThreads", 30)); | 70 | Util.SetMaxThreads(startupConfig.GetInt("MaxPoolThreads", 15)); |
71 | 71 | ||
72 | if (startupConfig != null) | 72 | if (startupConfig != null) |
73 | { | 73 | { |