diff options
Diffstat (limited to 'plugins/mod_http_file_share.lua')
-rw-r--r-- | plugins/mod_http_file_share.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index 275ebaff..9b933b25 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -354,9 +354,11 @@ if expiry >= 0 and not external_base_url then 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"); if total == 0 then module:log("info", "No expired uploaded files to prune"); + prune_done(); return; 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); end + prune_done(); end); module:add_timer(1, function () |