[hg] galaxy 3466: Fix SGE bug reported in issue #281
details: http://www.bx.psu.edu/hg/galaxy/rev/1d11aec88053 changeset: 3466:1d11aec88053 user: Nate Coraor <nate@bx.psu.edu> date: Tue Mar 02 13:20:47 2010 -0500 description: Fix SGE bug reported in issue #281 diffstat: lib/galaxy/jobs/runners/sge.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (11 lines): diff -r 0967cea77985 -r 1d11aec88053 lib/galaxy/jobs/runners/sge.py --- a/lib/galaxy/jobs/runners/sge.py Tue Mar 02 12:32:44 2010 -0500 +++ b/lib/galaxy/jobs/runners/sge.py Tue Mar 02 13:20:47 2010 -0500 @@ -337,6 +337,6 @@ self.queue.put( sge_job_state ) elif job.state == model.Job.states.QUEUED: log.debug( "(%s/%s) is still in SGE queued state, adding to the SGE queue" % ( job.id, job.job_runner_external_id ) ) - sge_job_state.old_state = DRMAA.Session.QUEUED + sge_job_state.old_state = DRMAA.Session.QUEUED_ACTIVE sge_job_state.running = False self.queue.put( sge_job_state )
participants (1)
-
Greg Von Kuster