diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-06-03 12:28:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-06-03 12:28:27 +0100 |
commit | ef6c6f531d1c2c9c16989ecf4d975009395536a1 (patch) | |
tree | 2acecd6f3129af320144692ce069981d259fed27 | |
parent | 3883d8dd070143268b1cb6e9cf09797f3d9868cd (diff) | |
download | prosody-ef6c6f531d1c2c9c16989ecf4d975009395536a1.tar.gz prosody-ef6c6f531d1c2c9c16989ecf4d975009395536a1.zip |
s2smanager: Remove potentially misleading log message (thanks albert)
-rw-r--r-- | core/s2smanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index ca87670a..03e4ff87 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -241,7 +241,6 @@ function attempt_connection(host_session, err) end end); - log("debug", "DNS lookup for %s sent, waiting for response before we can connect", to_host); return true; -- Attempt in progress elseif host_session.srv_hosts and #host_session.srv_hosts > host_session.srv_choice then -- Not our first attempt, and we also have SRV host_session.srv_choice = host_session.srv_choice + 1; |