mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_cron: Fix recording last task run time #1751
The type checks, they do nothing! Observed: Tasks that were supposed to run weekly or daily were running each hour.
This commit is contained in:
parent
f0fc620d2a
commit
38c67064b3
2 changed files with 2 additions and 0 deletions
|
@ -45,6 +45,7 @@ local function should_run(when, last) return not last or last + periods[when] *
|
|||
local function run_task(task)
|
||||
local started_at = os.time();
|
||||
task:run(started_at);
|
||||
task.last = started_at;
|
||||
task:save(started_at);
|
||||
end
|
||||
|
||||
|
|
|
@ -84,6 +84,7 @@ end
|
|||
local function run_task(task : task_spec)
|
||||
local started_at = os.time();
|
||||
task:run(started_at);
|
||||
task.last = started_at;
|
||||
task:save(started_at);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue