diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-28 00:56:30 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-28 00:56:30 +0200 |
commit | 2a65eae651302a17c925e0340e59e73976aa07fb (patch) | |
tree | 1ca47dc848f3a9e73f7630e0432c93b19d40982f | |
parent | 7b63f8d95dcc99df5508a05c60fe472dfc2a4282 (diff) | |
download | prosody-2a65eae651302a17c925e0340e59e73976aa07fb.tar.gz prosody-2a65eae651302a17c925e0340e59e73976aa07fb.zip |
mod_storage_sql: Ignore shadowed error variable [luacheck]
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index ad2de840..518e2654 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -153,7 +153,7 @@ end local archive_item_limit = module:get_option_number("storage_archive_item_limit"); local archive_item_count_cache = cache.new(module:get_option("storage_archive_item_limit_cache_size", 1000)); --- luacheck: ignore 512 431/user 431/store +-- luacheck: ignore 512 431/user 431/store 431/err local map_store = {}; map_store.__index = map_store; map_store.remove = {}; |