summaryrefslogtreecommitdiff
path: root/buildscripts/remote_operations.py
diff options
context:
space:
mode:
authorEddie Louie <eddie.louie@mongodb.com>2018-02-12 17:32:59 -0500
committerEddie Louie <eddie.louie@mongodb.com>2018-02-13 10:06:56 -0500
commit579a0d489ce6da5abfe16919a38e989be06f897f (patch)
treecce92baa41782e1294a2ff2556b6c11c68b1fe7d /buildscripts/remote_operations.py
parent2f739c6fb28e9dfb051a2c34e8bf861bed3a0496 (diff)
downloadmongo-579a0d489ce6da5abfe16919a38e989be06f897f.tar.gz
SERVER-32715 Add "Connection refused" to list of _SSH_CONNECTION_ERRORS in remote_operations.py
Diffstat (limited to 'buildscripts/remote_operations.py')
-rwxr-xr-xbuildscripts/remote_operations.py5
1 files changed, 3 insertions, 2 deletions
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",
]