From 3a6b27befbc6119929b7e5dc67456195720c3093 Mon Sep 17 00:00:00 2001 From: diva Date: Mon, 29 Dec 2008 22:44:04 +0000 Subject: Changing the default Comms module to be RESTComms, in case none is specified in OpenSim.ini. RESTComms is a super-set of LocalComms. Calls to local regions do no use REST, they use internal function calls. --- .../Environment/Modules/Communications/Local/LocalInterregionComms.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs') diff --git a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs index 9661387..6812e6d 100644 --- a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs +++ b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs @@ -65,7 +65,7 @@ namespace OpenSim.Region.Environment.Modules.Communications.Local IConfig startupConfig = config.Configs["Communications"]; if ((startupConfig == null) || - (startupConfig != null) && (startupConfig.GetString("InterregionComms", "LocalComms") == "LocalComms")) + (startupConfig != null) && (startupConfig.GetString("InterregionComms", "RESTCommms") == "LocalComms")) m_enabled = true; } -- cgit v1.1