mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Replace existing watchdog when starting hibernation
There shouldn't be one here but if there is, for some reason, it's better to close it than have it around to wake up and possibly try to destroy the session.
This commit is contained in:
parent
3a3d9c6c2c
commit
d840f27320
1 changed files with 4 additions and 0 deletions
|
@ -474,6 +474,10 @@ module:hook("pre-resource-unbind", function (event)
|
|||
if session.hibernating then return end
|
||||
|
||||
session.hibernating = os_time();
|
||||
if session.hibernating_watchdog then
|
||||
session.log("debug", "Session already has a sleeping watchdog, replacing it");
|
||||
session.hibernating_watchdog:cancel();
|
||||
end
|
||||
session.hibernating_watchdog = watchdog.new(resume_timeout, function(this_dog)
|
||||
if this_dog ~= session.hibernating_watchdog then
|
||||
-- This really shouldn't happen?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue