From c0082adc561f24edb38c65881aa03f063953e53d Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Tue, 27 Sep 2022 13:15:53 -0700 Subject: [PATCH] Revert "Enable fullfsync mode in the database" This reverts commit a2eac8003467a0607fd5b87f3853e5808c4bc80e. --- ts/sql/Server.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ts/sql/Server.ts b/ts/sql/Server.ts index ce2c37530..b67e33890 100644 --- a/ts/sql/Server.ts +++ b/ts/sql/Server.ts @@ -413,7 +413,6 @@ function switchToWAL(db: Database): void { // https://sqlite.org/wal.html db.pragma('journal_mode = WAL'); db.pragma('synchronous = FULL'); - db.pragma('fullfsync = ON'); } function migrateSchemaVersion(db: Database): void {