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 pass
else: else:
try: try:
self.os.kill(self.worker_pid, self.signal.SIGKILL) try:
time.sleep(0.05) self.os.kill(self.worker_pid, self.signal.SIGKILL)
time.sleep(0.5)
finally:
self.worker_status.kill()
except: except:
pass pass