From 579a0d489ce6da5abfe16919a38e989be06f897f Mon Sep 17 00:00:00 2001 From: Eddie Louie Date: Mon, 12 Feb 2018 17:32:59 -0500 Subject: SERVER-32715 Add "Connection refused" to list of _SSH_CONNECTION_ERRORS in remote_operations.py --- buildscripts/remote_operations.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'buildscripts/remote_operations.py') diff --git a/buildscripts/remote_operations.py b/buildscripts/remote_operations.py index 1595cc0e03b..18e29fdf0db 100755 --- a/buildscripts/remote_operations.py +++ b/buildscripts/remote_operations.py @@ -36,9 +36,10 @@ _IS_WINDOWS = sys.platform == "win32" or sys.platform == "cygwin" _OPERATIONS = ["shell", "copy_to", "copy_from"] _SSH_CONNECTION_ERRORS = [ - "System is booting up.", + "Connection refused", "Permission denied", - "ssh_exchange_identification: read: Connection reset by peer" + "System is booting up.", + "ssh_exchange_identification: read: Connection reset by peer", ] -- cgit v1.2.1