diff options
author | Kim Alvefur <zash@zash.se> | 2012-03-11 21:37:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-03-11 21:37:55 +0100 |
commit | dce18041d04aa7a62a749a05341099932d8947f9 (patch) | |
tree | d997c493c76c692b45a53737934ac4b65c37f89c | |
parent | 818b91cdf5aea37839a40170551410a743d298b8 (diff) | |
download | prosody-dce18041d04aa7a62a749a05341099932d8947f9.tar.gz prosody-dce18041d04aa7a62a749a05341099932d8947f9.zip |
mod_s2s: Don't bounce sendq on failed connections since it's handled by s2smanager
-rw-r--r-- | plugins/s2s/mod_s2s.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/s2s/mod_s2s.lua b/plugins/s2s/mod_s2s.lua index a496af57..1fa8ae81 100644 --- a/plugins/s2s/mod_s2s.lua +++ b/plugins/s2s/mod_s2s.lua @@ -107,10 +107,7 @@ module:hook("route/remote", function (event) s2sout.initiate_connection(host_session); if (not host_session.connecting) and (not host_session.conn) then log("warn", "Connection to %s failed already, destroying session...", to_host); - if not s2s_destroy_session(host_session, "Connection failed") then - -- Already destroyed, we need to bounce our stanza - host_session:bounce_sendq(host_session.destruction_reason); - end + s2s_destroy_session(host_session, "Connection failed"); return false; end return true; |