mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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;
|
return watchdog;
|
||||||
end
|
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
|
if self.timer_id then
|
||||||
timer.reschedule(self.timer_id, self.timeout+1);
|
timer.reschedule(self.timer_id, self.timeout+1);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue