Merge "Set PROFILE_TASKS_TASK_OUTPUT_LIMIT"

This commit is contained in:
Zuul 2020-02-20 01:29:00 +00:00 committed by Gerrit Code Review
commit 1d204a3bec
2 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ class AnsiblePlaybookAction(base.TripleOAction):
self.trash_output = self._kwargs_for_run.pop('trash_output', False)
self.profile_tasks = self._kwargs_for_run.pop('profile_tasks', True)
self.profile_tasks_limit = self._kwargs_for_run.pop(
'profile_tasks_limit', 0)
'profile_tasks_limit', 20)
self.blacklisted_hostnames = self._kwargs_for_run.pop(
'blacklisted_hostnames', [])
self.override_ansible_cfg = self._kwargs_for_run.pop(

View File

@ -72,7 +72,7 @@ class AnsiblePlaybookActionTest(base.TestCase):
'ANSIBLE_LOCAL_TEMP': action.work_dir,
'ANSIBLE_CONFIG': ansible_config_path,
'ANSIBLE_CALLBACK_WHITELIST': 'profile_tasks',
'PROFILE_TASKS_TASK_OUTPUT_LIMIT': '0',
'PROFILE_TASKS_TASK_OUTPUT_LIMIT': '20',
}
python_version = sys.version_info.major
ansible_playbook_cmd = 'ansible-playbook-{}'.format(python_version)