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.
ThreadPoolClientBranch
Charles Krinke 2008-01-12 22:18:23 +00:00
parent f59f4e476d
commit 7d609ae56d
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ namespace OpenSim.Region.Environment.Modules
private Queue<HttpRequestClass> rpcQueue = new Queue<HttpRequestClass>();
private object HttpListLock = new object();
private string m_name = "HttpScriptRequests";
private int httpTimeout = 300;
private int httpTimeout = 30000;
// <request id, HttpRequestClass>
private Dictionary<LLUUID, HttpRequestClass> m_pendingRequests;