aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
authorMelanie2011-02-02 03:28:47 +0100
committerMelanie2011-02-02 03:28:47 +0100
commit4a56038d11a82cb9b6a0e11cfe935e6c52948bd2 (patch)
tree4b89b9e02cd24a241e3715562afc0a6fa5dd4fc8 /OpenSim/Framework/WebUtil.cs
parentSquash a nullref (diff)
downloadopensim-SC_OLD-4a56038d11a82cb9b6a0e11cfe935e6c52948bd2.zip
opensim-SC_OLD-4a56038d11a82cb9b6a0e11cfe935e6c52948bd2.tar.gz
opensim-SC_OLD-4a56038d11a82cb9b6a0e11cfe935e6c52948bd2.tar.bz2
opensim-SC_OLD-4a56038d11a82cb9b6a0e11cfe935e6c52948bd2.tar.xz
Change the timeout on WebUtil to 20s to help make more tps succeed
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r--OpenSim/Framework/WebUtil.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index d731ac5..0593341 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -138,17 +138,17 @@ namespace OpenSim.Framework
138 /// </summary> 138 /// </summary>
139 public static OSDMap PutToService(string url, OSDMap data) 139 public static OSDMap PutToService(string url, OSDMap data)
140 { 140 {
141 return ServiceOSDRequest(url,data,"PUT",10000); 141 return ServiceOSDRequest(url,data,"PUT",20000);
142 } 142 }
143 143
144 public static OSDMap PostToService(string url, OSDMap data) 144 public static OSDMap PostToService(string url, OSDMap data)
145 { 145 {
146 return ServiceOSDRequest(url,data,"POST",10000); 146 return ServiceOSDRequest(url,data,"POST",20000);
147 } 147 }
148 148
149 public static OSDMap GetFromService(string url) 149 public static OSDMap GetFromService(string url)
150 { 150 {
151 return ServiceOSDRequest(url,null,"GET",10000); 151 return ServiceOSDRequest(url,null,"GET",20000);
152 } 152 }
153 153
154 public static OSDMap ServiceOSDRequest(string url, OSDMap data, string method, int timeout) 154 public static OSDMap ServiceOSDRequest(string url, OSDMap data, string method, int timeout)
@@ -275,7 +275,7 @@ namespace OpenSim.Framework
275 /// </summary> 275 /// </summary>
276 public static OSDMap PostToService(string url, NameValueCollection data) 276 public static OSDMap PostToService(string url, NameValueCollection data)
277 { 277 {
278 return ServiceFormRequest(url,data,10000); 278 return ServiceFormRequest(url,data,20000);
279 } 279 }
280 280
281 public static OSDMap ServiceFormRequest(string url, NameValueCollection data, int timeout) 281 public static OSDMap ServiceFormRequest(string url, NameValueCollection data, int timeout)