Commit 0ffa4b16 authored by ibuler's avatar ibuler

[Update] 修改coco错误提示

parent cfc6b615
......@@ -37,12 +37,16 @@ class SSHConnection:
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
sock = None
error = ''
if not system_user.password and not system_user.private_key:
self.get_system_user_auth(system_user)
if asset.domain:
sock = self.get_proxy_sock_v2(asset)
if not sock:
error = 'Connect gateway failed;'
logger.error(error)
try:
try:
......@@ -81,9 +85,9 @@ class SSHConnection:
system_user.username, asset.ip, asset.port,
password_short, key_fingerprint,
))
return None, None, str(e)
return None, None, error + '\n' + str(e)
except (socket.error, TimeoutError) as e:
return None, None, str(e)
return None, None, error + '\n' + str(e)
return ssh, sock, None
def get_transport(self, asset, system_user):
......
......@@ -136,6 +136,7 @@ class ElFinderConnector:
return cmd
else:
self.response['error'] = 'No valid command found'
return None, None
def run(self, request):
""" Main entry point for running commands. Attemps to run a command
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment