* Double timeout on region registration XMLRPC call to the grid service
parent
520da0d9ff
commit
34746f5485
|
@ -136,7 +136,10 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams);
|
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)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue