# HG changeset patch # User Matthew Wild # Date 1293166597 0 # Node ID 8bd0b2d4b9b08e62331fefe33fe175a498dd283e # Parent b5223a74e07ea9c357d74ad3346a28bfff3868fa s2smanager: send_to_host(): Handle already-destroyed session and bounce stanza accordingly diff -r b5223a74e07e -r 8bd0b2d4b9b0 core/s2smanager.lua --- a/core/s2smanager.lua Fri Dec 24 04:56:02 2010 +0000 +++ b/core/s2smanager.lua Fri Dec 24 04:56:37 2010 +0000 @@ -126,7 +126,10 @@ log("debug", "stanza [%s] queued until connection complete", tostring(data.name)); if (not host_session.connecting) and (not host_session.conn) then log("warn", "Connection to %s failed already, destroying session...", to_host); - destroy_session(host_session); + if not destroy_session(host_session, "Connection failed") then + -- Already destroyed, we need to bounce our stanza + bounce_sendq(host_session, host_session.destruction_reason); + end return false; end end