mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_smacks: Ensure hibernating session is not connected
Turns out that if you destroy a session from inside prosody, it goes into hibernation but stays connected and continues processing stanzas.
This commit is contained in:
parent
d34e453ec3
commit
9f3feb39f9
1 changed files with 3 additions and 0 deletions
|
@ -514,6 +514,9 @@ module:hook("pre-resource-unbind", function (event)
|
||||||
session.log("debug", "Session resumed before hibernation timeout, all is well")
|
session.log("debug", "Session resumed before hibernation timeout, all is well")
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
if session.conn then
|
||||||
|
session.conn:close();
|
||||||
|
end
|
||||||
return true; -- Postpone destruction for now
|
return true; -- Postpone destruction for now
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue