# HG changeset patch # User Matthew Wild # Date 1701339257 0 # Node ID 11e66ad894f0363ace1f0ac86a6bf7f17330ccde # Parent e20949a10118b37cb1df92bb69517da3a4ec54ba luacheckrc, mod_http_file_share: Update for module API change (once->on_ready) diff -r e20949a10118 -r 11e66ad894f0 .luacheckrc --- a/.luacheckrc Thu Nov 30 10:09:47 2023 +0000 +++ b/.luacheckrc Thu Nov 30 10:14:17 2023 +0000 @@ -95,7 +95,7 @@ "module.may", "module.measure", "module.metric", - "module.once", + "module.on_ready", "module.open_store", "module.provides", "module.remove_item", diff -r e20949a10118 -r 11e66ad894f0 plugins/mod_http_file_share.lua --- a/plugins/mod_http_file_share.lua Thu Nov 30 10:09:47 2023 +0000 +++ b/plugins/mod_http_file_share.lua Thu Nov 30 10:14:17 2023 +0000 @@ -79,7 +79,7 @@ local measure_quota_cache_size = module:measure("quota_cache", "amount"); local measure_total_storage_usage = module:measure("total_storage", "amount", { unit = "bytes" }); -module:once(function () +module:on_ready(function () local total, err = persist_stats:get(nil, "total"); if not err then total_storage_usage = tonumber(total) or 0;