* Ignore any exception encountered during shutdown rather than aborting the quit command
This commit is contained in:
Justin Clarke Casey
2008-09-29 15:40:16 +00:00
parent 0b2bc26bfe
commit a888dbc60a

View File

@@ -747,7 +747,14 @@ namespace OpenSim
// TODO: implement this
m_log.Info("[SHUTDOWN]: Closing console and terminating");
m_sceneManager.Close();
try
{
m_sceneManager.Close();
}
catch (Exception e)
{
m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e);
}
base.Shutdown();
}