* Fix http://opensimulator.org/mantis/view.php?id=2189 for real this time
* Ignore any exception encountered during shutdown rather than aborting the quit command0.6.0-stable
parent
0b2bc26bfe
commit
a888dbc60a
|
@ -747,7 +747,14 @@ namespace OpenSim
|
||||||
// TODO: implement this
|
// TODO: implement this
|
||||||
m_log.Info("[SHUTDOWN]: Closing console and terminating");
|
m_log.Info("[SHUTDOWN]: Closing console and terminating");
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
m_sceneManager.Close();
|
m_sceneManager.Close();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
m_log.ErrorFormat("[SHUTDOWN]: Ignoring failure during shutdown - {0}", e);
|
||||||
|
}
|
||||||
|
|
||||||
base.Shutdown();
|
base.Shutdown();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue