diff options
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 85ab99c..cbb99dc 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -136,7 +136,10 @@ namespace OpenSim.Region.Communications.OGS1 | |||
136 | try | 136 | try |
137 | { | 137 | { |
138 | XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams); | 138 | XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams); |
139 | GridResp = GridReq.Send(serversInfo.GridURL, 30000); | 139 | |
140 | // The timeout should always be significantly larger than the timeout for the grid server to request | ||
141 | // the initial status of the region before confirming registration. | ||
142 | GridResp = GridReq.Send(serversInfo.GridURL, 60000); | ||
140 | } | 143 | } |
141 | catch (Exception e) | 144 | catch (Exception e) |
142 | { | 145 | { |