* Double timeout on region registration XMLRPC call to the grid service

This commit is contained in:
Justin Clarke Casey
2008-06-13 16:32:32 +00:00
parent 520da0d9ff
commit 34746f5485

View File

@@ -136,7 +136,10 @@ namespace OpenSim.Region.Communications.OGS1
try
{
XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams);
GridResp = GridReq.Send(serversInfo.GridURL, 30000);
// The timeout should always be significantly larger than the timeout for the grid server to request
// the initial status of the region before confirming registration.
GridResp = GridReq.Send(serversInfo.GridURL, 60000);
}
catch (Exception e)
{