diff options
author | Kim Alvefur <zash@zash.se> | 2013-01-24 00:59:32 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-01-24 00:59:32 +0100 |
commit | e9a03725ff41d10630ef28997879a348728636c6 (patch) | |
tree | 1d6709adb9ac9908309024974e17d0626a957d1d | |
parent | 1b79eabc8a4a403c568d6c4e8350d2aa25024af1 (diff) | |
download | prosody-e9a03725ff41d10630ef28997879a348728636c6.tar.gz prosody-e9a03725ff41d10630ef28997879a348728636c6.zip |
mod_s2s: Don't try to close sessions that were destroyed before timeout
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index ad628a9b..15c89ced 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -429,6 +429,8 @@ local function initialize_session(session) add_task(connect_timeout, function () if session.type == "s2sin" or session.type == "s2sout" then return; -- Ok, we're connected + elseif session.type == "s2s_destroyed" then + return; -- Session already destroyed end -- Not connected, need to close session and clean up (session.log or log)("debug", "Destroying incomplete session %s->%s due to inactivity", |