mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
luacheckrc, mod_http_file_share: Update for module API change (once->on_ready)
This commit is contained in:
parent
8a38b5d0da
commit
4263537301
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ files["plugins/"] = {
|
||||||
"module.may",
|
"module.may",
|
||||||
"module.measure",
|
"module.measure",
|
||||||
"module.metric",
|
"module.metric",
|
||||||
"module.once",
|
"module.on_ready",
|
||||||
"module.open_store",
|
"module.open_store",
|
||||||
"module.provides",
|
"module.provides",
|
||||||
"module.remove_item",
|
"module.remove_item",
|
||||||
|
|
|
@ -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_quota_cache_size = module:measure("quota_cache", "amount");
|
||||||
local measure_total_storage_usage = module:measure("total_storage", "amount", { unit = "bytes" });
|
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");
|
local total, err = persist_stats:get(nil, "total");
|
||||||
if not err then
|
if not err then
|
||||||
total_storage_usage = tonumber(total) or 0;
|
total_storage_usage = tonumber(total) or 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue