Diff

plugins/mod_s2s/mod_s2s.lua @ 7642:2dcb402c4a0d

Backed out changeset a23b5cb8c22b It was a nice idea, but our s2s connection logic is too complicated. The session may have been destroyed inside attempt_connection().
author Matthew Wild <mwild1@gmail.com>
date Wed, 31 Aug 2016 11:42:03 +0100
parent 7638:a23b5cb8c22b
child 7647:e9d7a409e236
child 7662:946871f6e3c8
line wrap: on
line diff
--- a/plugins/mod_s2s/mod_s2s.lua	Sat Aug 27 13:40:10 2016 +0100
+++ b/plugins/mod_s2s/mod_s2s.lua	Wed Aug 31 11:42:03 2016 +0100
@@ -634,7 +634,6 @@
 			if s2sout.attempt_connection(session, err) then
 				return; -- Session lives for now
 			end
-			hosts[session.from_host].events.fire_event("s2s-connect-failure", { session = session, err = err });
 		end
 		(session.log or log)("debug", "s2s disconnected: %s->%s (%s)", tostring(session.from_host), tostring(session.to_host), tostring(err or "connection closed"));
 		s2s_destroy_session(session, err);