Update main.d

* Wait for all parallel jobs that depend on the database to complete - added from f86c4b9d9e
This commit is contained in:
abraunegg 2023-10-25 08:36:16 +11:00
parent 9837e59ddc
commit b9f20cd357

View file

@ -1139,12 +1139,14 @@ extern(C) nothrow @nogc @system void exitHandler(int value) {
try {
assumeNoGC ( () {
log.log("Got termination signal, performing clean up");
// was itemDb initialised?
// Wait for all parallel jobs that depend on the database to complete
taskPool.finish(true);
// Was itemDb initialised?
if (itemDB.isDatabaseInitialised()) {
// Make sure the .wal file is incorporated into the main db before we exit
log.log("Shutting down DB connection and merging temporary data");
itemDB.performVacuum();
destroy(itemDB);
object.destroy(itemDB);
}
})();
} catch(Exception e) {}