Skip to content

Commit

Permalink
Merge pull request #17889 from vrothberg/sqlite-fixes
Browse files Browse the repository at this point in the history
More sqlite fixes
  • Loading branch information
openshift-merge-robot authored Mar 23, 2023
2 parents 1051456 + b31d9e1 commit cb18a33
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions libpod/sqlite_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ const (
sqliteOptionSynchronous = "&_sync=FULL"
// Allow foreign keys (https://www.sqlite.org/pragma.html#pragma_foreign_keys).
sqliteOptionForeignKeys = "&_foreign_keys=1"
// Enable cache sharing for threads within a process
sqliteOptionSharedCache = "&cache=shared"
// Make sure that transactions happen exclusively.
sqliteOptionTXLock = "&_txlock=exclusive"

Expand All @@ -49,7 +47,6 @@ const (
sqliteOptionJournal +
sqliteOptionSynchronous +
sqliteOptionForeignKeys +
sqliteOptionSharedCache +
sqliteOptionTXLock
)

Expand Down

0 comments on commit cb18a33

Please sign in to comment.