From bc4174adf8bd73e815ebc37aec61fdfd380e815a Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 14 Mar 2017 13:23:14 -0400 Subject: [PATCH] Ignore .retry files for project updates --- awx/main/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 6a448a1b7b..1ad050a993 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -1160,6 +1160,7 @@ class RunProjectUpdate(BaseTask): ''' env = super(RunProjectUpdate, self).build_env(project_update, **kwargs) env = self.add_ansible_venv(env) + env['ANSIBLE_RETRY_FILES_ENABLED'] = str(False) env['ANSIBLE_ASK_PASS'] = str(False) env['ANSIBLE_ASK_SUDO_PASS'] = str(False) env['DISPLAY'] = '' # Prevent stupid password popup when running tests.