mod_http_file_share: Include storage in prune time measurement

Maybe the original idea was that you would measure storage separately?
This commit is contained in:
Kim Alvefur 2021-03-31 09:43:05 +02:00
parent 29a56e7747
commit d8613bb7b9

View file

@ -384,8 +384,8 @@ if expiry >= 0 and not external_base_url then
end
local reaper_task = async.runner(function(boundary_time)
local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true}));
local prune_done = module:measure("prune", "times");
local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true}));
if total == 0 then
module:log("info", "No expired uploaded files to prune");