Skip to content

Commit b68fed6

Browse files
committed
refactor: drop sqlite wal mode
1 parent 8eba6ac commit b68fed6

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/core/state/unlocked.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ impl UnlockedEnvelope {
3939
.filename(&path)
4040
.create_if_missing(true)
4141
.foreign_keys(true)
42-
.journal_mode(sqlx::sqlite::SqliteJournalMode::Wal)
4342
.busy_timeout(std::time::Duration::from_secs(5)),
4443
)
4544
.await
@@ -71,7 +70,6 @@ impl UnlockedEnvelope {
7170
.filename(path)
7271
.create_if_missing(false)
7372
.foreign_keys(true)
74-
.journal_mode(sqlx::sqlite::SqliteJournalMode::Wal)
7573
.busy_timeout(std::time::Duration::from_secs(5)),
7674
)
7775
.await

0 commit comments

Comments
 (0)