diff options
author | Justin Clarke Casey | 2008-09-07 05:21:03 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-07 05:21:03 +0000 |
commit | 42661a8a97840268c09fbd2b52a49b54e1582d17 (patch) | |
tree | 910ded37d9e2ce4af771907cb89c7d28549d59a1 | |
parent | * Improve login failure handling. (diff) | |
download | opensim-SC_OLD-42661a8a97840268c09fbd2b52a49b54e1582d17.zip opensim-SC_OLD-42661a8a97840268c09fbd2b52a49b54e1582d17.tar.gz opensim-SC_OLD-42661a8a97840268c09fbd2b52a49b54e1582d17.tar.bz2 opensim-SC_OLD-42661a8a97840268c09fbd2b52a49b54e1582d17.tar.xz |
* Increase expect_user XMLRPC timeout from 6 to 30 seconds
* This may possibly (est. 20% change) help the situation that we see on OSGrid meetings when a region stops accepting logins, which appears to be because it never receives the expect_user request
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index bd0e38b..da41dfd 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -316,7 +316,7 @@ namespace OpenSim.Grid.UserServer | |||
316 | 316 | ||
317 | // Send | 317 | // Send |
318 | XmlRpcRequest GridReq = new XmlRpcRequest("expect_user", SendParams); | 318 | XmlRpcRequest GridReq = new XmlRpcRequest("expect_user", SendParams); |
319 | XmlRpcResponse GridResp = GridReq.Send(sim.httpServerURI, 6000); | 319 | XmlRpcResponse GridResp = GridReq.Send(sim.httpServerURI, 30000); |
320 | 320 | ||
321 | if (!GridResp.IsFault) | 321 | if (!GridResp.IsFault) |
322 | { | 322 | { |