commit/galaxy-central: natefoo: Handle the Torque 'E' job state in the CLI runner.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/8cd0793b0fc6/ changeset: 8cd0793b0fc6 branch: stable user: natefoo date: 2013-02-15 16:53:20 summary: Handle the Torque 'E' job state in the CLI runner. affected #: 1 file diff -r 1f1072317efd5cf82cb791d75ba968c4bacffaf4 -r 8cd0793b0fc65b57f8fd93cfffc19ba105d190cf lib/galaxy/jobs/runners/cli_job/torque.py --- a/lib/galaxy/jobs/runners/cli_job/torque.py +++ b/lib/galaxy/jobs/runners/cli_job/torque.py @@ -128,5 +128,6 @@ return job_states.OK def __get_job_state(self, state): - return { 'R' : job_states.RUNNING, + return { 'E' : job_states.RUNNING, + 'R' : job_states.RUNNING, 'Q' : job_states.QUEUED }.get(state, state) 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