Revert "Enable fullfsync mode in the database"

This reverts commit a2eac80034.
This commit is contained in:
Fedor Indutny 2022-09-27 13:15:53 -07:00 committed by GitHub
parent 124d671368
commit c0082adc56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -413,7 +413,6 @@ function switchToWAL(db: Database): void {
// https://sqlite.org/wal.html // https://sqlite.org/wal.html
db.pragma('journal_mode = WAL'); db.pragma('journal_mode = WAL');
db.pragma('synchronous = FULL'); db.pragma('synchronous = FULL');
db.pragma('fullfsync = ON');
} }
function migrateSchemaVersion(db: Database): void { function migrateSchemaVersion(db: Database): void {