From 4d4765aa28d4553ffa2893eea201eaa27867a022 Mon Sep 17 00:00:00 2001 From: Tom Date: Mon, 21 Mar 2011 13:30:53 -0700 Subject: [PATCH] Since we've plugged the leak, now increase URLs to 5000 since the limit is being hit in several sims --- OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index 66eb7473a0..bdbd0c2305 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs @@ -77,7 +77,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp new Dictionary(); - private int m_TotalUrls = 1000; + private int m_TotalUrls = 5000; private IHttpServer m_HttpServer = null;