[Bugfix] 修复网关测试连接失败未捕获导致报500的bug

pull/2984/head
jym503558564 2019-07-18 11:13:58 +08:00
parent 40de7d64c6
commit dbb27a7771
1 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,8 @@ class Gateway(AssetUser):
pkey=self.private_key_obj)
except(paramiko.AuthenticationException,
paramiko.BadAuthenticationType,
paramiko.SSHException) as e:
paramiko.SSHException,
paramiko.ssh_exception.NoValidConnectionsError) as e:
return False, str(e)
try: