mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Fix stray watchdog closing sessions
Unsure exactly how this happens, but sometimes a watchdog appears to close a session that isn't hibernating, or hasn't hibernating long enough.
This commit is contained in:
parent
0890b20fbf
commit
3a3d9c6c2c
1 changed files with 6 additions and 1 deletions
|
@ -474,7 +474,12 @@ 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()
|
||||
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