2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b1b8acdf8c72/ Changeset: b1b8acdf8c72 Branch: stable User: jmchilton Date: 2014-03-04 14:47:58 Summary: Fix Torque CLI runner to recognize complete ('C') state as 'ok'. Affected #: 1 file diff -r 7f7da7248d4de5d9f039639db77721d0b22fa6c5 -r b1b8acdf8c7268dfded0a358acfe31308196381a 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 @@ -131,4 +131,5 @@ def __get_job_state(self, state): return { 'E' : job_states.RUNNING, 'R' : job_states.RUNNING, - 'Q' : job_states.QUEUED }.get(state, state) + 'Q' : job_states.QUEUED, + 'C' : job_states.OK }.get(state, state) https://bitbucket.org/galaxy/galaxy-central/commits/ed9228eb4c05/ Changeset: ed9228eb4c05 User: jmchilton Date: 2014-03-04 14:48:28 Summary: Merge stable. Affected #: 1 file diff -r d66016004bca809cb3bc1fcd630c6d336bf92a9e -r ed9228eb4c05ffba9c4c4dd9b496596c5725d306 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 @@ -131,4 +131,5 @@ def __get_job_state(self, state): return { 'E' : job_states.RUNNING, 'R' : job_states.RUNNING, - 'Q' : job_states.QUEUED }.get(state, state) + 'Q' : job_states.QUEUED, + 'C' : job_states.OK }.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.