luacheckrc, mod_http_file_share: Update for module API change (once->on_ready)

This commit is contained in:
Matthew Wild 2023-11-30 10:14:17 +00:00
parent 8a38b5d0da
commit 4263537301
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ files["plugins/"] = {
"module.may",
"module.measure",
"module.metric",
"module.once",
"module.on_ready",
"module.open_store",
"module.provides",
"module.remove_item",

View file

@ -79,7 +79,7 @@ local measure_upload_cache_size = module:measure("upload_cache", "amount");
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;