Websocket Echo module should not be on by default.

user_profiles
teravus 2013-02-07 12:22:03 -05:00
parent 4bd1794b5a
commit a5c83f7505
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ namespace OpenSim.Region.OptionalModules.WebSocketEchoModule
public void Initialise(IConfigSource pConfig)
{
enabled = true;// (pConfig.Configs["WebSocketEcho"] != null);
enabled =(pConfig.Configs["WebSocketEcho"] != null);
if (enabled)
m_log.DebugFormat("[WebSocketEchoModule]: INITIALIZED MODULE");
}