mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_cron: Allow for a small amount of timer drift
If the timer activates a bit early then a task might be just a few seconds short of being allowed to run. This would run such a task rather than wait another hour. The value 0.5% chosen so that a weekly task does not run an entire hour earlier than last time.
This commit is contained in:
parent
9767804146
commit
e0e180aa9d
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ function module.add_host(host_module)
|
|||
function host_module.unload() active_hosts[host_module.host] = nil; end
|
||||
end
|
||||
|
||||
local function should_run(when, last) return not last or last + periods[when] <= os.time() end
|
||||
local function should_run(when, last) return not last or last + periods[when] * 0.995 <= os.time() end
|
||||
|
||||
local function run_task(task)
|
||||
local started_at = os.time();
|
||||
|
|
|
@ -78,7 +78,7 @@ function module.add_host(host_module : moduleapi)
|
|||
end
|
||||
|
||||
local function should_run(when : frequency, last : integer) : boolean
|
||||
return not last or last + periods[when] <= os.time();
|
||||
return not last or last + periods[when]*0.995 <= os.time();
|
||||
end
|
||||
|
||||
local function run_task(task : task_spec)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue