diff --git a/cpp/src/db/db_connection.cpp b/cpp/src/db/db_connection.cpp index 2c97268ac9..2870a9a447 100644 --- a/cpp/src/db/db_connection.cpp +++ b/cpp/src/db/db_connection.cpp @@ -20,7 +20,7 @@ SqliteDBPtr connect() { SqliteDBPtr temp = std::make_shared(initStorage(storage_file_name)); temp->sync_schema(); temp->open_forever(); // thread safe option - temp->pragma.journal_mode(journal_mode::WAL); // WAL => write ahead log + //temp->pragma.journal_mode(journal_mode::WAL); // WAL => write ahead log return temp; }