aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 63c9a63..445fba0 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -747,7 +747,14 @@ namespace OpenSim
747 // TODO: implement this 747 // TODO: implement this
748 m_log.Info("[SHUTDOWN]: Closing console and terminating"); 748 m_log.Info("[SHUTDOWN]: Closing console and terminating");
749 749
750 m_sceneManager.Close(); 750 try
751 {
752 m_sceneManager.Close();
753 }
754 catch (Exception e)
755 {
756 m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e);
757 }
751 758
752 base.Shutdown(); 759 base.Shutdown();
753 } 760 }