Commit c2c27dc1 authored by Antoine Millet's avatar Antoine Millet
Browse files

Jobs thread are now set as daemons.

parent 8f7cb9b8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -211,6 +211,7 @@ class JobsManager(object):
        job = jobtype(self, id=jobid, **kwargs)
        job['since'] = datetime.now()
        self._jobs[jobid] = job
        job.daemon = True
        job.start()
        return job