adds additional exception handling in open() (#18003)
The open() method will now catch a socket.timeout exception and raise a ShellError.pull/4420/head
parent
bce31a11c2
commit
b1666020a9
|
@ -106,6 +106,8 @@ class Shell(object):
|
||||||
raise ShellError("unable to resolve host name")
|
raise ShellError("unable to resolve host name")
|
||||||
except AuthenticationException:
|
except AuthenticationException:
|
||||||
raise ShellError('Unable to authenticate to remote device')
|
raise ShellError('Unable to authenticate to remote device')
|
||||||
|
except socket.timeout:
|
||||||
|
raise ShellError("timeout trying to connect to remote device")
|
||||||
except socket.error:
|
except socket.error:
|
||||||
exc = get_exception()
|
exc = get_exception()
|
||||||
if exc.errno == 60:
|
if exc.errno == 60:
|
||||||
|
|
Loading…
Reference in New Issue