commit/galaxy-central: dannon: Jobs need to be set back to NEW to immediately resume running, instead of QUEUED.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/19cbbaf56621/ changeset: 19cbbaf56621 user: dannon date: 2012-11-16 21:49:10 summary: Jobs need to be set back to NEW to immediately resume running, instead of QUEUED. affected #: 1 file diff -r 243ff2bfbf28fb92f94eca408d063fb5257a6481 -r 19cbbaf566216cb46ecc6a6d17e0f1e0ab52978e lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -702,7 +702,7 @@ for dataset in self.datasets: job = dataset.creating_job if job is not None and job.state == Job.states.PAUSED: - job.set_state(Job.states.QUEUED) + job.set_state(Job.states.NEW) def get_disk_size( self, nice_size=False ): # unique datasets only db_session = object_session( self ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket