From 7d609ae56daf7b6edc586c4801b908255e393c69 Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sat, 12 Jan 2008 22:18:23 +0000 Subject: Thank you, Kinoc for adding: When accessing slower web sites or proxy services 300 msecs can be too slow and cause a timeout to occur. This is reported when llHTTPRequest times out but may not be reported for other functions like osSetDynamicTextureURL. This sets the time out to 30 seconds. It appears that the value affects not just llHTTPRequest's. --- OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs b/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs index f8798dc..e3de13b 100644 --- a/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs +++ b/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs @@ -88,7 +88,7 @@ namespace OpenSim.Region.Environment.Modules private Queue rpcQueue = new Queue(); private object HttpListLock = new object(); private string m_name = "HttpScriptRequests"; - private int httpTimeout = 300; + private int httpTimeout = 30000; // private Dictionary m_pendingRequests; -- cgit v1.1