mirror of https://gitlab.com/bashrc2/epicyon
Fix cloning of inbox thread
parent
d325501a31
commit
832c1cd39b
5
inbox.py
5
inbox.py
|
@ -1140,13 +1140,14 @@ def runInboxQueueWatchdog(projectVersion: str,httpd) -> None:
|
|||
"""This tries to keep the inbox thread running even if it dies
|
||||
"""
|
||||
print('Starting inbox queue watchdog')
|
||||
inboxQueueOriginal=httpd.thrInboxQueue.clone()
|
||||
inboxQueueOriginal=httpd.thrInboxQueue.clone(runInboxQueue)
|
||||
#httpd.thrInboxQueue=inboxQueueOriginal
|
||||
httpd.thrInboxQueue.start()
|
||||
while True:
|
||||
time.sleep(20)
|
||||
if not httpd.thrInboxQueue.isAlive():
|
||||
httpd.thrInboxQueue.kill()
|
||||
httpd.thrInboxQueue=inboxQueueOriginal.clone()
|
||||
httpd.thrInboxQueue=inboxQueueOriginal.clone(runInboxQueue)
|
||||
httpd.thrInboxQueue.start()
|
||||
print('Restarting inbox queue...')
|
||||
|
||||
|
|
|
@ -42,6 +42,7 @@ class threadWithTrace(threading.Thread):
|
|||
def kill(self):
|
||||
self.killed = True
|
||||
|
||||
def clone(self):
|
||||
return threadWithTrace(target=self, \
|
||||
args=(self._args),daemon=True)
|
||||
def clone(self,fn):
|
||||
return threadWithTrace(target=fn, \
|
||||
args=self._args, \
|
||||
daemon=True)
|
||||
|
|
Loading…
Reference in New Issue