mod_storage_sql: Ignore name clash [luacheck]

This commit is contained in:
Kim Alvefur 2017-04-01 19:45:47 +02:00
parent ee705afbef
commit dd86b147bf

View file

@ -567,7 +567,7 @@ function module.command(arg)
if command == "upgrade" then
-- We need to find every unique dburi in the config
local uris = {};
for host in pairs(prosody.hosts) do
for host in pairs(prosody.hosts) do -- luacheck: ignore 431/host
local params = normalize_params(config.get(host, "sql") or default_params);
uris[sql.db2uri(params)] = params;
end