From 4836354fd0d6c1194bb0e02248edce16e253914e Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 30 Nov 2021 00:52:07 +0100 Subject: mod_http_file_share: Limit query to time since last expiry This is probably a bad idea, as files that could not be deleted for some reason will not be tried again. I was just thinking of what the 'task' argument could be used for. --- plugins/mod_http_file_share.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index 5f3c8e5e..3daca396 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -457,9 +457,9 @@ if expiry >= 0 and not external_base_url then local prune_start = module:measure("prune", "times"); - module:daily("Remove expired files", function(_, boundary_time) + module:daily("Remove expired files", function(task, boundary_time) local prune_done = prune_start(); - local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true})); + local iter, total = assert(uploads:find(nil, { ["start"] = task.last; ["end"] = boundary_time; total = true })); if total == 0 then module:log("info", "No expired uploaded files to prune"); -- cgit v1.2.3