Skip to content

Commit

Permalink
Merge pull request #3463 from jmchilton/16.07_container_fix
Browse files Browse the repository at this point in the history
[16.07] fix condor containers
  • Loading branch information
martenson committed Jan 23, 2017
2 parents 5b3debc + 3f93b19 commit 915b653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/jobs/runners/condor.py
Expand Up @@ -60,7 +60,7 @@ def queue_job( self, job_wrapper ):
container = None
universe = query_params.get('universe', None)
if universe and universe.strip().lower() == 'docker':
container = self.find_container( job_wrapper )
container = self._find_container( job_wrapper )
if container:
# HTCondor needs the image as 'docker_image'
query_params.update({'docker_image': container})
Expand Down

0 comments on commit 915b653

Please sign in to comment.