Reduce max concurrent endpoint connections from 50 to 6 (was 2 before)

avinationmerge
Melanie 2012-09-09 17:41:10 +02:00
parent 0556bbefdd
commit afb4e06f63
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ namespace OpenSim
AppDomain.CurrentDomain.UnhandledException +=
new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
ServicePointManager.DefaultConnectionLimit = 50;
ServicePointManager.DefaultConnectionLimit = 6;
// Add the arguments supplied when running the application to the configuration
ArgvConfigSource configSource = new ArgvConfigSource(args);