plugins/mod_http_file_share.lua
changeset 12008 a2a0e00cbd24
parent 12007 121c0401f83e
child 12009 797197b8607e
equal deleted inserted replaced
12007:121c0401f83e 12008:a2a0e00cbd24
   458 		wait();
   458 		wait();
   459 	end
   459 	end
   460 
   460 
   461 	local prune_start = module:measure("prune", "times");
   461 	local prune_start = module:measure("prune", "times");
   462 
   462 
   463 	module:daily("Remove expired files", function(task, boundary_time)
   463 	module:daily("Remove expired files", function(_, boundary_time)
   464 		local prune_done = prune_start();
   464 		local prune_done = prune_start();
   465 		local iter, total = assert(uploads:find(nil, { ["start"] = task.last; ["end"] = boundary_time; total = true }));
   465 		local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true}));
   466 
   466 
   467 		if total == 0 then
   467 		if total == 0 then
   468 			module:log("info", "No expired uploaded files to prune");
   468 			module:log("info", "No expired uploaded files to prune");
   469 			prune_done();
   469 			prune_done();
   470 			return;
   470 			return;