1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

skips certain ssh errors and attempts to continue

should fix #10225
This commit is contained in:
Brian Coca 2015-02-23 05:17:41 -05:00
parent 84e18b00d6
commit b9aa8f07be

View file

@ -234,6 +234,8 @@ class Connection(object):
if line is None or " " not in line:
continue
tokens = line.split()
if not tokens:
continue
if tokens[0].find(self.HASHED_KEY_MAGIC) == 0:
# this is a hashed known host entry
try: