Make ROBUST not hang on exit in recent Mono versions. Make the logfile config

setting/commandline option actually work.
This commit is contained in:
Melanie Thielker
2009-07-31 21:00:09 +00:00
parent ae8d3ab22e
commit ff35a3378e
2 changed files with 12 additions and 4 deletions

View File

@@ -87,7 +87,11 @@ namespace OpenSim.Server
m_log.InfoFormat("[SERVER]: Failed to load {0}", conn);
}
}
return m_Server.Run();
int res = m_Server.Run();
Environment.Exit(res);
return 0;
}
}
}