mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_storage_sql: Split long lines [luacheck]
This commit is contained in:
parent
d5205416d5
commit
ee705afbef
1 changed files with 4 additions and 2 deletions
|
@ -524,8 +524,10 @@ end
|
|||
|
||||
local function normalize_params(params)
|
||||
return {
|
||||
driver = assert(params.driver, "Configuration error: Both the SQL driver and the database need to be specified");
|
||||
database = assert(normalize_database(params.driver, params.database), "Configuration error: Both the SQL driver and the database need to be specified");
|
||||
driver = assert(params.driver,
|
||||
"Configuration error: Both the SQL driver and the database need to be specified");
|
||||
database = assert(normalize_database(params.driver, params.database),
|
||||
"Configuration error: Both the SQL driver and the database need to be specified");
|
||||
username = params.username;
|
||||
password = params.password;
|
||||
host = params.host;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue