1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c901bbb4eca8/ changeset: c901bbb4eca8 user: dannon date: 2013-01-24 17:03:49 summary: Tasks: Adjust the id_tag to use the format "<jobid>_<taskid>", instead of "<jobid>:<taskid>". This resolves issues with particular cluster runners being able to submit. affected #: 1 file diff -r 6189b2690b4688c4e35066bf09aaf95e1c272d5e -r c901bbb4eca8142b442fa348b8136d4ff3bcfaf8 lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -346,7 +346,7 @@ Return an id tag suitable for identifying the task. This combines the task's job id and the task's own id. """ - return "%s:%s" % ( self.job.get_id(), self.get_id() ) + return "%s_%s" % ( self.job.get_id(), self.get_id() ) def get_command_line( self ): return self.command_line def get_parameters( 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.