adds additional exception handling in open() (#18003)
The open() method will now catch a socket.timeout exception and raise
a ShellError.
(cherry picked from commit b1666020a9
)
This commit is contained in:
parent
ab3d4731a3
commit
6d909bd65c
1 changed files with 2 additions and 0 deletions
|
@ -106,6 +106,8 @@ class Shell(object):
|
|||
raise ShellError("unable to resolve host name")
|
||||
except AuthenticationException:
|
||||
raise ShellError('Unable to authenticate to remote device')
|
||||
except socket.timeout:
|
||||
raise ShellError("timeout trying to connect to remote device")
|
||||
except socket.error:
|
||||
exc = get_exception()
|
||||
if exc.errno == 60:
|
||||
|
|
Loading…
Reference in a new issue