aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2010-03-15 20:32:36 -0700
committerDiva Canto2010-03-15 20:32:36 -0700
commit45ef3e9987def8385174c332fc56c90b0ba3fef8 (patch)
tree19009d94194ee94ac691a84a4b7c271d6ffaf648 /OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs
parentRestoring LoadPlugin as it was before. Justin's last change made it throw. (diff)
downloadopensim-SC_OLD-45ef3e9987def8385174c332fc56c90b0ba3fef8.zip
opensim-SC_OLD-45ef3e9987def8385174c332fc56c90b0ba3fef8.tar.gz
opensim-SC_OLD-45ef3e9987def8385174c332fc56c90b0ba3fef8.tar.bz2
opensim-SC_OLD-45ef3e9987def8385174c332fc56c90b0ba3fef8.tar.xz
Get the local inner simulation service object to the handler so that there is no possibility of cascading requests when failures happen.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs
index 4d82a05..9e8454f 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs
@@ -156,6 +156,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
156 return m_localBackend.GetScene(handle); 156 return m_localBackend.GetScene(handle);
157 } 157 }
158 158
159 public ISimulationService GetInnerService()
160 {
161 return m_localBackend;
162 }
163
159 /** 164 /**
160 * Agent-related communications 165 * Agent-related communications
161 */ 166 */