mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Merge 0.12->trunk
This commit is contained in:
commit
e49554a422
1 changed files with 10 additions and 1 deletions
|
@ -521,7 +521,16 @@ module:hook("pre-resource-unbind", function (event)
|
|||
if session.hibernating then return end
|
||||
|
||||
session.hibernating = os_time();
|
||||
session.hibernating_watchdog = watchdog.new(resume_timeout, function()
|
||||
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?
|
||||
session.log("debug", "Releasing a stray watchdog");
|
||||
return
|
||||
end
|
||||
session.log("debug", "mod_smacks hibernation timeout reached...");
|
||||
if session.destroyed then
|
||||
session.log("debug", "The session has already been destroyed");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue