Skip to content

Commit

Permalink
fix condor containers
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening authored and jmchilton committed Jan 23, 2017
1 parent 5b3debc commit 3f93b19
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 3f93b19

Please sign in to comment.