mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 03:50:12 +03:00
Merge pull request #2961 from chakflying/feat/flush-wal
Chore: Flush WAL on shutdown
This commit is contained in:
commit
6356b1e50a
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue