Merge pull request #2961 from chakflying/feat/flush-wal

Chore: Flush WAL on shutdown
pull/2867/head^2
Louis Lam 1 year ago committed by GitHub
commit 6356b1e50a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -417,6 +417,9 @@ class Database {
log.info("db", "Closing the database");
// Flush WAL to main database
await R.exec("PRAGMA wal_checkpoint(TRUNCATE)");
while (true) {
Database.noReject = true;
await R.close();

Loading…
Cancel
Save