mod_smacks: Log something when hibernation starts

Will hopefully save future confusion about sessions being destroyed when
they are in fact not.
This commit is contained in:
Kim Alvefur 2023-01-19 20:59:28 +01:00
parent c9fb0c2cab
commit 67b6440d9b

View file

@ -500,6 +500,7 @@ module:hook("pre-resource-unbind", function (event)
session.conn = nil;
conn:close();
end
session.log("debug", "Session going into hibernation (not being destroyed)")
module:fire_event("smacks-hibernation-start", { origin = session; queue = session.outgoing_stanza_queue:table() });
return true; -- Postpone destruction for now
end);