commit/galaxy-central: jmchilton: Dynamic job runner bug fixes.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/35d80be97691/ changeset: 35d80be97691 user: jmchilton date: 2012-08-16 17:58:01 summary: Dynamic job runner bug fixes. affected #: 2 files diff -r a42eae47ae877073a077527463beb32e251d7035 -r 35d80be976914c49759e17068a2ba65b752eb3b1 lib/galaxy/jobs/handler.py --- a/lib/galaxy/jobs/handler.py +++ b/lib/galaxy/jobs/handler.py @@ -360,7 +360,7 @@ def __init__( self, app ): self.app = app self.job_runners = {} - start_job_runners = ["local", "lwr", "dynamic"] + start_job_runners = ["local", "lwr"] if app.config.start_job_runners is not None: start_job_runners.extend( [ x.strip() for x in util.listify( app.config.start_job_runners ) ] ) if app.config.use_tasked_jobs: diff -r a42eae47ae877073a077527463beb32e251d7035 -r 35d80be976914c49759e17068a2ba65b752eb3b1 lib/galaxy/jobs/mapper.py --- a/lib/galaxy/jobs/mapper.py +++ b/lib/galaxy/jobs/mapper.py @@ -111,7 +111,7 @@ expand_function = self.__get_expand_function( expand_function_name ) return self.__invoke_expand_function( expand_function ) else: - raise Exception( "Unhandled dynamic job runner type specified - %s" % calculation_type ) + raise Exception( "Unhandled dynamic job runner type specified - %s" % expand_type ) def __cache_job_runner_url( self, params ): 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