aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
authorDiva Canto2013-08-02 17:00:18 -0700
committerDiva Canto2013-08-02 17:00:18 -0700
commit5198df3aa03eb47bc26b3c86924687612c015dce (patch)
treecd5e258d717b41e2c57e9df317a1d4eb2b1009c2 /OpenSim/Framework/WebUtil.cs
parentTurn off edit beams when object is derezed while being edited. (mantis #6722) (diff)
downloadopensim-SC_OLD-5198df3aa03eb47bc26b3c86924687612c015dce.zip
opensim-SC_OLD-5198df3aa03eb47bc26b3c86924687612c015dce.tar.gz
opensim-SC_OLD-5198df3aa03eb47bc26b3c86924687612c015dce.tar.bz2
opensim-SC_OLD-5198df3aa03eb47bc26b3c86924687612c015dce.tar.xz
Issue: 10 simultaneous TPs, many not making it. Now bypassing the per-url lock -- we should be "ok" (or, more "ok") now that we have increased the connection limit on the http library. But this is a sensitive part of the code, so it may need reverting.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/WebUtil.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index 6fb1e0c..0e9de59 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -145,10 +145,10 @@ namespace OpenSim.Framework
145 145
146 public static OSDMap ServiceOSDRequest(string url, OSDMap data, string method, int timeout, bool compressed) 146 public static OSDMap ServiceOSDRequest(string url, OSDMap data, string method, int timeout, bool compressed)
147 { 147 {
148 lock (EndPointLock(url)) 148 //lock (EndPointLock(url))
149 { 149 //{
150 return ServiceOSDRequestWorker(url,data,method,timeout,compressed); 150 return ServiceOSDRequestWorker(url,data,method,timeout,compressed);
151 } 151 //}
152 } 152 }
153 153
154 public static void LogOutgoingDetail(Stream outputStream) 154 public static void LogOutgoingDetail(Stream outputStream)