[hg] galaxy 1614: A bug in recent job runner changes... nothing ...
details: http://www.bx.psu.edu/hg/galaxy/rev/99b4d554afd1 changeset: 1614:99b4d554afd1 user: Nate Coraor <nate@bx.psu.edu> date: Mon Nov 10 12:41:29 2008 -0500 description: A bug in recent job runner changes... nothing was ever actually sent to the job stop queue. 1 file(s) affected in this change: lib/galaxy/web/controllers/root.py diffs (11 lines): diff -r 342e8ebf1305 -r 99b4d554afd1 lib/galaxy/web/controllers/root.py --- a/lib/galaxy/web/controllers/root.py Fri Nov 07 16:27:07 2008 -0500 +++ b/lib/galaxy/web/controllers/root.py Mon Nov 10 12:41:29 2008 -0500 @@ -288,6 +288,7 @@ # Are *all* of the job's other output datasets deleted? if job.check_if_output_datasets_deleted(): job.mark_deleted() + self.app.job_manager.job_stop_queue.put( job ) self.app.model.flush() @web.expose
participants (1)
-
Nate Coraor