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

0.6.0-stable
Justin Clarke Casey 2008-06-13 16:32:32 +00:00
parent 520da0d9ff
commit 34746f5485
1 changed files with 4 additions and 1 deletions

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)
{