Skip to content

Commit

Permalink
Removing exclusive lock on master catalog SQLite db file (necessary f…
Browse files Browse the repository at this point in the history
…or online backup).
  • Loading branch information
Tobin Baker committed Aug 12, 2015
1 parent 5c0c1c9 commit 5b3c414
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ private MasterCatalog(final SQLiteQueue queue) throws CatalogException {
@Override
protected Object job(final SQLiteConnection sqliteConnection) throws SQLiteException {
sqliteConnection.exec("PRAGMA foreign_keys = ON;");
sqliteConnection.exec("PRAGMA locking_mode = EXCLUSIVE;");
sqliteConnection.exec("BEGIN EXCLUSIVE;");
sqliteConnection.exec("COMMIT;");
sqliteConnection.exec(UPDATE_UNKNOWN_STATUS);
Expand Down

0 comments on commit 5b3c414

Please sign in to comment.