diff options
author | Melanie | 2012-09-09 17:41:10 +0200 |
---|---|---|
committer | Melanie | 2012-09-09 17:41:10 +0200 |
commit | afb4e06f63dd6a532c85b71f0d6c486ae38815fe (patch) | |
tree | 8555a2ab757d0419ebf484790a3bdf3334236103 | |
parent | Catch zero UUIDs in LSL and shout as an error. Also catch attempts to send IM (diff) | |
download | opensim-SC-afb4e06f63dd6a532c85b71f0d6c486ae38815fe.zip opensim-SC-afb4e06f63dd6a532c85b71f0d6c486ae38815fe.tar.gz opensim-SC-afb4e06f63dd6a532c85b71f0d6c486ae38815fe.tar.bz2 opensim-SC-afb4e06f63dd6a532c85b71f0d6c486ae38815fe.tar.xz |
Reduce max concurrent endpoint connections from 50 to 6 (was 2 before)
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 0dbb95a..78636c4 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -74,7 +74,7 @@ namespace OpenSim | |||
74 | AppDomain.CurrentDomain.UnhandledException += | 74 | AppDomain.CurrentDomain.UnhandledException += |
75 | new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); | 75 | new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); |
76 | 76 | ||
77 | ServicePointManager.DefaultConnectionLimit = 50; | 77 | ServicePointManager.DefaultConnectionLimit = 6; |
78 | 78 | ||
79 | // Add the arguments supplied when running the application to the configuration | 79 | // Add the arguments supplied when running the application to the configuration |
80 | ArgvConfigSource configSource = new ArgvConfigSource(args); | 80 | ArgvConfigSource configSource = new ArgvConfigSource(args); |