mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_storage_sql: Normalize parameters for upgrade command
This commit is contained in:
parent
d0df7de379
commit
738528509c
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ function module.command(arg)
|
|||
-- We need to find every unique dburi in the config
|
||||
local uris = {};
|
||||
for host in pairs(prosody.hosts) do
|
||||
local params = config.get(host, "sql") or default_params;
|
||||
local params = normalize_params(config.get(host, "sql") or default_params);
|
||||
uris[sql.db2uri(params)] = params;
|
||||
end
|
||||
print("We will check and upgrade the following databases:\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue