mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Use config enum for 'sqlite_tune'
This commit is contained in:
parent
e1b3be0015
commit
3b448c4479
1 changed files with 1 additions and 1 deletions
|
@ -935,7 +935,7 @@ function module.load()
|
|||
-- Note: These things can't be changed with in a transaction. LuaDBI
|
||||
-- opens a transaction automatically for every statement(?), so this
|
||||
-- will not work there.
|
||||
local tune = module:get_option_string("sqlite_tune", "default");
|
||||
local tune = module:get_option_enum("sqlite_tune", "default", "normal", "fast", "safe");
|
||||
if tune == "normal" then
|
||||
if journal_mode ~= "wal" then
|
||||
engine:execute("PRAGMA journal_mode=WAL;");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue