mod_http_file_share: Back out 876e1b6d6ae4

This commit is contained in:
Kim Alvefur 2021-12-03 10:43:02 +01:00
parent 9950712ba3
commit d4f8f23818

View file

@ -460,9 +460,9 @@ if expiry >= 0 and not external_base_url then
local prune_start = module:measure("prune", "times");
module:daily("Remove expired files", function(task, boundary_time)
module:daily("Remove expired files", function(_, boundary_time)
local prune_done = prune_start();
local iter, total = assert(uploads:find(nil, { ["start"] = task.last; ["end"] = boundary_time; total = true }));
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");