summaryrefslogtreecommitdiff
path: root/buildscripts/remote_operations.py
diff options
context:
space:
mode:
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",
]