diff options
author | Justin Clarke Casey | 2008-05-09 13:21:12 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-09 13:21:12 +0000 |
commit | 313a635d1ec368b14a1678bdf7813138972f3bbc (patch) | |
tree | 9bbe16ca9d6be132ba38eb2e966ae87d616063ee /OpenSim/Grid | |
parent | * Valid Sculpted prim now collide properly. (diff) | |
download | opensim-SC_OLD-313a635d1ec368b14a1678bdf7813138972f3bbc.zip opensim-SC_OLD-313a635d1ec368b14a1678bdf7813138972f3bbc.tar.gz opensim-SC_OLD-313a635d1ec368b14a1678bdf7813138972f3bbc.tar.bz2 opensim-SC_OLD-313a635d1ec368b14a1678bdf7813138972f3bbc.tar.xz |
* Fix opensim region server shutdown.
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/GridServer/GridServerBase.cs | 2 | ||||
-rw-r--r-- | OpenSim/Grid/MessagingServer/Main.cs | 2 | ||||
-rw-r--r-- | OpenSim/Grid/UserServer/Main.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs index 49c53e9..5517953 100644 --- a/OpenSim/Grid/GridServer/GridServerBase.cs +++ b/OpenSim/Grid/GridServer/GridServerBase.cs | |||
@@ -178,7 +178,7 @@ namespace OpenSim.Grid.GridServer | |||
178 | */ | 178 | */ |
179 | } | 179 | } |
180 | 180 | ||
181 | protected override void Shutdown() | 181 | public override void Shutdown() |
182 | { | 182 | { |
183 | foreach (IGridPlugin plugin in m_plugins) plugin.Close(); | 183 | foreach (IGridPlugin plugin in m_plugins) plugin.Close(); |
184 | 184 | ||
diff --git a/OpenSim/Grid/MessagingServer/Main.cs b/OpenSim/Grid/MessagingServer/Main.cs index 22a7d9c..9020ca4 100644 --- a/OpenSim/Grid/MessagingServer/Main.cs +++ b/OpenSim/Grid/MessagingServer/Main.cs | |||
@@ -142,7 +142,7 @@ namespace OpenSim.Grid.MessagingServer | |||
142 | } | 142 | } |
143 | } | 143 | } |
144 | 144 | ||
145 | protected override void Shutdown() | 145 | public override void Shutdown() |
146 | { | 146 | { |
147 | msgsvc.deregisterWithUserServer(); | 147 | msgsvc.deregisterWithUserServer(); |
148 | 148 | ||
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index b6f59e1..e1ccd02 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs | |||
@@ -244,7 +244,7 @@ namespace OpenSim.Grid.UserServer | |||
244 | } | 244 | } |
245 | } | 245 | } |
246 | 246 | ||
247 | protected override void Shutdown() | 247 | public override void Shutdown() |
248 | { | 248 | { |
249 | m_loginService.OnUserLoggedInAtLocation -= NotifyMessageServersUserLoggedInToLocation; | 249 | m_loginService.OnUserLoggedInAtLocation -= NotifyMessageServersUserLoggedInToLocation; |
250 | 250 | ||