# HG changeset patch # User Kim Alvefur # Date 1558997790 -7200 # Node ID ca8333d1a7fe8e3fd0f9b7903d995349581415f2 # Parent de5ab807e438d8a43ecdf61d6aa3248e88ba8f79 mod_storage_sql: Ignore shadowed error variable [luacheck] diff -r de5ab807e438 -r ca8333d1a7fe plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Tue May 28 00:47:50 2019 +0200 +++ b/plugins/mod_storage_sql.lua Tue May 28 00:56:30 2019 +0200 @@ -153,7 +153,7 @@ 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 = {};