Merge "Improve connection timeout log message"

This commit is contained in:
Zuul 2019-02-04 18:35:22 +00:00 committed by Gerrit Code Review
commit 92d8637ef1
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ def nodescan(ip, port=22, timeout=60, gather_hostkeys=True):
key = None
for count in iterate_timeout(
timeout, exceptions.ConnectionTimeoutException,
"connection on port %s" % port):
"connection to %s on port %s" % (ip, port)):
sock = None
t = None
try: