mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.watchdog: Allow passing a new timeout to :reset()
This commit is contained in:
parent
029e093478
commit
7532eac0e5
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,10 @@ local function new(timeout, callback)
|
|||
return watchdog;
|
||||
end
|
||||
|
||||
function watchdog_methods:reset()
|
||||
function watchdog_methods:reset(new_timeout)
|
||||
if new_timeout then
|
||||
self.timeout = new_timeout;
|
||||
end
|
||||
if self.timer_id then
|
||||
timer.reschedule(self.timer_id, self.timeout+1);
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue