util.watchdog: Allow passing a new timeout to :reset()

This commit is contained in:
Matthew Wild 2022-06-11 22:15:31 +01:00
parent 029e093478
commit 7532eac0e5

View file

@ -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