Changeset

12873:7f4f834fae79

mod_storage_sql: Silence luacheck warning
author Kim Alvefur <zash@zash.se>
date Mon, 30 Jan 2023 00:40:47 +0100
parents 12872:a20923f7d5fd
children 12874:b9468c8ac1d3
files plugins/mod_storage_sql.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_storage_sql.lua	Mon Jan 30 00:38:26 2023 +0100
+++ b/plugins/mod_storage_sql.lua	Mon Jan 30 00:40:47 2023 +0100
@@ -860,7 +860,7 @@
 				end
 			end
 			module:set_status("info", "Connected to " .. engine.params.driver);
-		end, function (engine)
+		end, function (engine) -- luacheck: ignore 431/engine
 			module:set_status("error", "Disconnected from " .. engine.params.driver);
 		end);
 		engines[sql.db2uri(params)] = engine;