commit/galaxy-central: natefoo: Strip whitespace around separators in start_job_runners
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/3fb39b478590/ changeset: 3fb39b478590 user: natefoo date: 2012-03-26 16:12:37 summary: Strip whitespace around separators in start_job_runners affected #: 1 file diff -r 4a23e38b7a12d65b50ff274272305f89fb5d0309 -r 3fb39b478590de7f4547766bbd60f3c6f686ab60 lib/galaxy/jobs/__init__.py --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -1183,7 +1183,7 @@ self.job_runners = {} start_job_runners = ["local"] if app.config.start_job_runners is not None: - start_job_runners.extend( app.config.start_job_runners.split(",") ) + start_job_runners.extend( [ x.strip() for x in util.listify( app.config.start_job_runners ) ] ) if app.config.use_tasked_jobs: start_job_runners.append("tasks") for name in start_job_runners: 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