mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Fix bypass of load procedure under prosodyctl
There's no 'prosody.prosodyctl' property other than this one, introduced in 6216743c188c in 2015. Guessing that the intent was to skip this when running as a prosodyctl command. The module.command code does its own version of this initialization, so this seems likely. Thanks raja for noticing
This commit is contained in:
parent
814817ebf2
commit
9f51add3a8
1 changed files with 1 additions and 1 deletions
|
@ -833,7 +833,7 @@ local function normalize_params(params)
|
|||
end
|
||||
|
||||
function module.load()
|
||||
if prosody.prosodyctl then return; end
|
||||
if prosody.process_type == "prosodyctl" then return; end
|
||||
local engines = module:shared("/*/sql/connections");
|
||||
local params = normalize_params(module:get_option("sql", default_params));
|
||||
local db_uri = sql.db2uri(params);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue