Skip to content

Commit

Permalink
Merge pull request #5464 from ryanpetrello/iso-check-timeout
Browse files Browse the repository at this point in the history
fix a bug in isolated check timeout handling

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
  • Loading branch information
2 parents 01161c7 + 220168f commit a9e5981
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions awx/main/isolated/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ def run_management_playbook(self, playbook, private_data_dir, idle_timeout=None,
params['private_data_dir'] = iso_dir
if idle_timeout:
params['settings']['idle_timeout'] = idle_timeout
else:
params['settings'].pop('idle_timeout', None)
params.update(**kw)
if all([
getattr(settings, 'AWX_ISOLATED_KEY_GENERATION', False) is True,
Expand Down

0 comments on commit a9e5981

Please sign in to comment.