Commit 59d387fa authored by liuzheng712's avatar liuzheng712

feat: update, a bug maybe

parent 96f121a6
...@@ -101,7 +101,11 @@ class SSHws(Namespace, BaseWebSocketHandler): ...@@ -101,7 +101,11 @@ class SSHws(Namespace, BaseWebSocketHandler):
self.clients[request.sid]["request"].change_size_event.set() self.clients[request.sid]["request"].change_size_event.set()
def on_disconnect(self): def on_disconnect(self):
self.clients[request.sid]["proxy"].close() try:
# todo: there maybe have bug
self.clients[request.sid]["proxy"].close()
except:
pass
# self.ssh.close() # self.ssh.close()
pass pass
......
...@@ -229,5 +229,5 @@ class WSProxy: ...@@ -229,5 +229,5 @@ class WSProxy:
def close(self): def close(self):
self.stop_event.set() self.stop_event.set()
self.ws.close()
self.child.close() self.child.close()
self.ws.on_disconnect()
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