diff options
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/GridServer/GridServerBase.cs | 4 | ||||
-rw-r--r-- | OpenSim/Grid/MessagingServer/Main.cs | 4 | ||||
-rw-r--r-- | OpenSim/Grid/UserServer/Main.cs | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs index 5067a8c..875b4ac 100644 --- a/OpenSim/Grid/GridServer/GridServerBase.cs +++ b/OpenSim/Grid/GridServer/GridServerBase.cs | |||
@@ -167,11 +167,9 @@ namespace OpenSim.Grid.GridServer | |||
167 | */ | 167 | */ |
168 | } | 168 | } |
169 | 169 | ||
170 | public override void Shutdown() | 170 | protected override void ShutdownSpecific() |
171 | { | 171 | { |
172 | foreach (IGridPlugin plugin in m_plugins) plugin.Dispose(); | 172 | foreach (IGridPlugin plugin in m_plugins) plugin.Dispose(); |
173 | |||
174 | base.Shutdown(); | ||
175 | } | 173 | } |
176 | } | 174 | } |
177 | } | 175 | } |
diff --git a/OpenSim/Grid/MessagingServer/Main.cs b/OpenSim/Grid/MessagingServer/Main.cs index 27b9346..537cc48 100644 --- a/OpenSim/Grid/MessagingServer/Main.cs +++ b/OpenSim/Grid/MessagingServer/Main.cs | |||
@@ -160,11 +160,9 @@ namespace OpenSim.Grid.MessagingServer | |||
160 | m_console.Notice("clear-cache - Clears region cache. Should be done when regions change position. The region cache gets stale after a while."); | 160 | m_console.Notice("clear-cache - Clears region cache. Should be done when regions change position. The region cache gets stale after a while."); |
161 | } | 161 | } |
162 | 162 | ||
163 | public override void Shutdown() | 163 | protected override void ShutdownSpecific() |
164 | { | 164 | { |
165 | msgsvc.deregisterWithUserServer(); | 165 | msgsvc.deregisterWithUserServer(); |
166 | |||
167 | base.Shutdown(); | ||
168 | } | 166 | } |
169 | } | 167 | } |
170 | } | 168 | } |
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 23df830..e24b486 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs | |||
@@ -392,11 +392,9 @@ namespace OpenSim.Grid.UserServer | |||
392 | 392 | ||
393 | } | 393 | } |
394 | 394 | ||
395 | public override void Shutdown() | 395 | protected override void ShutdownSpecific() |
396 | { | 396 | { |
397 | m_loginService.OnUserLoggedInAtLocation -= NotifyMessageServersUserLoggedInToLocation; | 397 | m_loginService.OnUserLoggedInAtLocation -= NotifyMessageServersUserLoggedInToLocation; |
398 | |||
399 | base.Shutdown(); | ||
400 | } | 398 | } |
401 | 399 | ||
402 | public void TestResponse(List<InventoryFolderBase> resp) | 400 | public void TestResponse(List<InventoryFolderBase> resp) |