Skip to content

Commit

Permalink
Fix awxkit function that detects private data directories in job args
Browse files Browse the repository at this point in the history
  • Loading branch information
shanemcd committed Mar 29, 2021
1 parent ba2fd6f commit 8fb393c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awxkit/awxkit/api/pages/unified_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def controller_dir(self):
"""
self.get()
job_args = self.job_args
expected_prefix = '/tmp/awx_{}'.format(self.id)
expected_prefix = '/tmp/pdd_wrapper_{}'.format(self.id)
for arg1, arg2 in zip(job_args[:-1], job_args[1:]):
if arg1 == '-v':
if ':' in arg2:
Expand Down

0 comments on commit 8fb393c

Please sign in to comment.