Ignore if pty process has exited

This commit is contained in:
Aldo Adirajasa Fathoni
2023-09-26 13:23:20 +07:00
parent 3ef0fe19f8
commit 84e22e4a8c

View File

@@ -200,8 +200,13 @@ def disconnect(sid):
global child_pid
# kill pty process
os.kill(child_pid, signal.SIGKILL)
os.wait()
try:
os.kill(child_pid, signal.SIGKILL)
os.wait()
except ProcessLookupError:
pass
except ChildProcessError:
pass
# reset the variables
fd = None