From 435e008568a0590f89e3b6477b9d6ded3ac024b4 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 22 Jan 2023 14:45:47 +0100 Subject: util.startup: Close state on exit to ensure GC finalizers are called Ensures a last round of garbage collection and that finalizers are called. Fixes things like proper closing of SQLite3 state. There are more calls to os.exit() but most of them exit with an error or in a case where a final GC sweep might not matter as much. It would be nice if this was the default. Calling util.statup.exit() everywhere may be sensible, but would be more involved, requiring imports everywhere. --- util/startup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util') diff --git a/util/startup.lua b/util/startup.lua index 10ff1875..545b6ae7 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -648,7 +648,7 @@ function startup.shutdown() end function startup.exit() - os.exit(prosody.shutdown_code); + os.exit(prosody.shutdown_code, true); end -- prosodyctl only -- cgit v1.2.3