diff --git a/src/tribler/core/components/database/db/store.py b/src/tribler/core/components/database/db/store.py index 6e5f733a5b9..c1e48c221e0 100644 --- a/src/tribler/core/components/database/db/store.py +++ b/src/tribler/core/components/database/db/store.py @@ -136,7 +136,7 @@ def __init__( @self.db.on_connect def on_connect(_, connection): cursor = connection.cursor() - cursor.execute("PRAGMA journal_mode = WAL") + cursor.execute("PRAGMA journal_mode = DELETE") cursor.execute("PRAGMA synchronous = NORMAL") cursor.execute("PRAGMA temp_store = MEMORY") cursor.execute("PRAGMA foreign_keys = ON")