From 42661a8a97840268c09fbd2b52a49b54e1582d17 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Sun, 7 Sep 2008 05:21:03 +0000 Subject: * 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 --- OpenSim/Grid/UserServer/UserLoginService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Grid') 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 // Send XmlRpcRequest GridReq = new XmlRpcRequest("expect_user", SendParams); - XmlRpcResponse GridResp = GridReq.Send(sim.httpServerURI, 6000); + XmlRpcResponse GridResp = GridReq.Send(sim.httpServerURI, 30000); if (!GridResp.IsFault) { -- cgit v1.1