diff options
author | Justin Clark-Casey (justincc) | 2013-07-26 22:52:08 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-07-26 22:52:08 +0100 |
commit | ba9daf849e7c8db48e7c03e7cdedb77776b2052f (patch) | |
tree | ea3e92a3d1f556d3d2d67c7fcf4de9bc14c9fd54 /OpenSim/Region/CoreModules | |
parent | Fix failure in TestCreateDuplicateRootScenePresence(). (diff) | |
download | opensim-SC_OLD-ba9daf849e7c8db48e7c03e7cdedb77776b2052f.zip opensim-SC_OLD-ba9daf849e7c8db48e7c03e7cdedb77776b2052f.tar.gz opensim-SC_OLD-ba9daf849e7c8db48e7c03e7cdedb77776b2052f.tar.bz2 opensim-SC_OLD-ba9daf849e7c8db48e7c03e7cdedb77776b2052f.tar.xz |
Fix regression from 056a6ee7 because the RemoteSimulationConnector uses a copy of the LocalSimulationConnector but never initializes it (hence ServiceVersion was never set)
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs index bee602e..697ce68 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs | |||
@@ -63,12 +63,15 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation | |||
63 | /// </summary> | 63 | /// </summary> |
64 | private bool m_ModuleEnabled = false; | 64 | private bool m_ModuleEnabled = false; |
65 | 65 | ||
66 | public LocalSimulationConnectorModule() | ||
67 | { | ||
68 | ServiceVersion = "SIMULATION/0.2"; | ||
69 | } | ||
70 | |||
66 | #region Region Module interface | 71 | #region Region Module interface |
67 | 72 | ||
68 | public void Initialise(IConfigSource config) | 73 | public void Initialise(IConfigSource config) |
69 | { | 74 | { |
70 | ServiceVersion = "SIMULATION/0.2"; | ||
71 | |||
72 | IConfig moduleConfig = config.Configs["Modules"]; | 75 | IConfig moduleConfig = config.Configs["Modules"]; |
73 | if (moduleConfig != null) | 76 | if (moduleConfig != null) |
74 | { | 77 | { |