From b229a72a5fb929d4886117f39ed6bd17a6d56aef Mon Sep 17 00:00:00 2001 From: Mic Bowman Date: Tue, 4 Oct 2011 15:43:41 -0700 Subject: [PATCH] Turn off keepalives when commands are specified --- .../ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 08f3dc7e9e..96725dd230 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs @@ -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); } } }