Commit 4e01947b authored by Thibault VINCENT's avatar Thibault VINCENT
Browse files

fix: job threads should not block node shutdown on SIGINT

parent 7e8abee0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -141,6 +141,7 @@ class JobManager(object):
            # execute job
            self._jobs_running.append(jid)
            self._jobs_pending.remove(jid)
            job.daemon = True
            job.start()
    
    def is_job(self, jid):