mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http_file_share: Measure how long it takes to prune expired files
This commit is contained in:
parent
8fd4188823
commit
e2ea04d905
1 changed files with 3 additions and 0 deletions
|
@ -354,9 +354,11 @@ if expiry >= 0 and not external_base_url then
|
||||||
|
|
||||||
local reaper_task = async.runner(function(boundary_time)
|
local reaper_task = async.runner(function(boundary_time)
|
||||||
local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true}));
|
local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true}));
|
||||||
|
local prune_done = module:measure("prune", "times");
|
||||||
|
|
||||||
if total == 0 then
|
if total == 0 then
|
||||||
module:log("info", "No expired uploaded files to prune");
|
module:log("info", "No expired uploaded files to prune");
|
||||||
|
prune_done();
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -400,6 +402,7 @@ if expiry >= 0 and not external_base_url then
|
||||||
module:log("error", "Problem removing metadata for deleted files: %s", err);
|
module:log("error", "Problem removing metadata for deleted files: %s", err);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
prune_done();
|
||||||
end);
|
end);
|
||||||
|
|
||||||
module:add_timer(1, function ()
|
module:add_timer(1, function ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue