commit | 7f10f3531b700d55ccbab160adc03a1411e4989d | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Mon Sep 05 08:46:21 2016 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Mon Sep 05 08:46:21 2016 +0000 |
tree | c63ebb2bf65b40892408b0dab4138b563a42e13d | |
parent | c59270760a9e44f4c1f2c37bc3a1bb6222cc19b6 [diff] | |
parent | e56dd32d11dea393e4ec0090bce6ebd1fd4207de [diff] |
Merge "Let method _get_ssh_connection handle timeout error."
diff --git a/tempest/lib/common/ssh.py b/tempest/lib/common/ssh.py index 8e83775..c13f41a 100644 --- a/tempest/lib/common/ssh.py +++ b/tempest/lib/common/ssh.py
@@ -77,7 +77,7 @@ self.username, self.host) return ssh except (EOFError, - socket.error, + socket.error, socket.timeout, paramiko.SSHException) as e: if self._is_timed_out(_start_time): LOG.exception("Failed to establish authenticated ssh"