Flipping check_session xmlrpc's keep-alive to false, because some clients hang.

This commit is contained in:
diva
2009-04-29 03:01:19 +00:00
parent 7e972b304b
commit ff0684a9f3
2 changed files with 2 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid
httpServer.AddXmlRPCHandler("hg_login", m_loginService.XmlRpcLoginMethod);
httpServer.AddXmlRPCHandler("hg_new_auth_key", m_loginService.XmlRpcGenerateKeyMethod);
httpServer.AddXmlRPCHandler("hg_verify_auth_key", m_loginService.XmlRpcVerifyKeyMethod);
httpServer.AddXmlRPCHandler("check_auth_session", m_loginService.XmlRPCCheckAuthSession);
httpServer.AddXmlRPCHandler("check_auth_session", m_loginService.XmlRPCCheckAuthSession, false);
}
}