mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
Ignore if pty process has exited
This commit is contained in:
parent
3ef0fe19f8
commit
84e22e4a8c
1 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue