Turn off keepalives when commands are specified

avinationmerge
Mic Bowman 2011-10-04 15:43:41 -07:00
parent bfa405e6f7
commit b229a72a5f
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController
{
foreach (string enabledMethod in enabledMethods.Split('|'))
{
m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod]);
m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod], false);
}
}
}