Commit 452ef959 authored by Anael Beutot's avatar Anael Beutot
Browse files

Implemented stop method of job_manager.

parent 628a5621
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -62,6 +62,11 @@ class JobManager(object):
    def start(self):
        pass
    def stop(self):
        logger.debug('Stopping all currently running jobs')
        for job in self.jobs.itervalues():
            try:
                job.stop()
            except Exception:
                pass