mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_smacks: Fix to not wait for acks from before a resumption
Otherwise it can get stuck waiting indefinitely for an ack that made it notice the connection was stale.
This commit is contained in:
parent
4cde54475b
commit
11e5efc23f
1 changed files with 1 additions and 0 deletions
|
@ -590,6 +590,7 @@ function handle_resume(session, stanza, xmlns_sm)
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
module:fire_event("smacks-hibernation-end", {origin = session, resumed = original_session, queue = queue:table()});
|
module:fire_event("smacks-hibernation-end", {origin = session, resumed = original_session, queue = queue:table()});
|
||||||
|
original_session.awaiting_ack = nil; -- Don't wait for acks from before the resumption
|
||||||
request_ack_if_needed(original_session, true, "handle_resume", nil);
|
request_ack_if_needed(original_session, true, "handle_resume", nil);
|
||||||
end
|
end
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue