This commit is contained in:
Kovid Goyal 2008-07-02 09:50:42 -07:00
parent 005cffa38e
commit 49ddc38cb4

View File

@ -341,8 +341,11 @@ class Overseer(object):
pass
else:
try:
self.os.kill(self.worker_pid, self.signal.SIGKILL)
time.sleep(0.05)
try:
self.os.kill(self.worker_pid, self.signal.SIGKILL)
time.sleep(0.5)
finally:
self.worker_status.kill()
except:
pass