Skip to content

Commit

Permalink
revert: "fix: enforce db file to be existent before server start (#742)…
Browse files Browse the repository at this point in the history
…" (#744)

This reverts commit 64a9018.

causes failures in stakeholder tests, reverting and double checking
after major
  • Loading branch information
johannes-vogel authored Jul 12, 2024
1 parent 64a9018 commit 44b11a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlite/lib/SQLiteService.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SQLiteService extends SQLService {
options: { max: 1, ...this.options.pool },
create: tenant => {
const database = this.url4(tenant)
const dbc = new sqlite(database, {fileMustExist: true})
const dbc = new sqlite(database)

const deterministic = { deterministic: true }
dbc.function('session_context', key => dbc[$session][key])
Expand Down

0 comments on commit 44b11a2

Please sign in to comment.