Update changelog, use std::exit instead of exit

This commit is contained in:
Lion Kortlepel 2021-09-10 13:43:50 +03:00 committed by Lion
parent 30624c77a2
commit a2f92b5791
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@
- ADDED more meaningful shutdown messages
- ADDED even better backend connection error reporting
- ADDED `SendErrors` config in `ServerConfig.toml` to opt-out of error reporting
- ADDED hard-shutdown if Ctrl+C pressed 3 times
- FIXED issue with shells like bash being unusable after server exit
# v2.3.1

View File

@ -30,7 +30,7 @@ void Application::GracefullyShutdown() {
// hard shutdown at 2 additional tries
if (ShutdownAttempts == 2) {
info("hard shutdown forced by multiple shutdown requests");
exit(0);
std::exit(0);
}
info("already shutting down!");
return;