diff options
author | Diva Canto | 2013-08-02 17:00:18 -0700 |
---|---|---|
committer | Diva Canto | 2013-08-02 17:00:18 -0700 |
commit | 5198df3aa03eb47bc26b3c86924687612c015dce (patch) | |
tree | cd5e258d717b41e2c57e9df317a1d4eb2b1009c2 /OpenSim/Framework | |
parent | Turn off edit beams when object is derezed while being edited. (mantis #6722) (diff) | |
download | opensim-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 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 6 |
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) |