fix: 网关测试连接 500

pull/6439/head
xinwen 2021-07-14 11:17:48 +08:00 committed by Jiangjie.Bai
parent 8375008cfa
commit 26a7fa836c
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
import socket
import uuid import uuid
import random import random
import re import re
@ -80,7 +80,8 @@ class Gateway(BaseUser):
except(paramiko.AuthenticationException, except(paramiko.AuthenticationException,
paramiko.BadAuthenticationType, paramiko.BadAuthenticationType,
paramiko.SSHException, paramiko.SSHException,
paramiko.ssh_exception.NoValidConnectionsError) as e: paramiko.ssh_exception.NoValidConnectionsError,
socket.gaierror) as e:
return False, str(e) return False, str(e)
try: try: