commit/galaxy-central: natefoo: Fix the task runner I broke in 73e05bc. Thanks John Chilton.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/b8c331135aed/ changeset: b8c331135aed user: natefoo date: 2012-11-15 17:48:00 summary: Fix the task runner I broke in 73e05bc. Thanks John Chilton. affected #: 1 file diff -r 4e50648f6e5d015d253cb3c9e68dd731729b06f7 -r b8c331135aedd1754ae170f311c33e2da315189c lib/galaxy/jobs/mapper.py --- a/lib/galaxy/jobs/mapper.py +++ b/lib/galaxy/jobs/mapper.py @@ -116,7 +116,7 @@ def __cache_job_runner_url( self, params ): # If there's already a runner set in the Job object, don't overwrite from the tool - if self.job_runner_name is not None: + if self.job_runner_name is not None and not self.job_runner_name.startswith('tasks'): raw_job_runner_url = self.job_runner_name else: raw_job_runner_url = self.job_wrapper.tool.get_job_runner_url( params ) 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