Skip to content

Commit

Permalink
fix for unspecified retries on until + test (#16963)
Browse files Browse the repository at this point in the history
fixes #16907
  • Loading branch information
nitzmahone authored and bcoca committed Aug 4, 2016
1 parent bced871 commit 746ea64
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ansible/executor/task_executor.py
Expand Up @@ -430,11 +430,13 @@ def _execute(self, variables=None):

# Read some values from the task, so that we can modify them if need be
if self._task.until:
retries = self._task.retries + 1
retries = self._task.retries
if retries is None:
retries = 3
elif retries <= 0:
retries = 1
else:
retries += 1
else:
retries = 1

Expand Down
1 change: 1 addition & 0 deletions test/integration/non_destructive.yml
Expand Up @@ -20,6 +20,7 @@
- { role: test_changed_when, tags: test_changed_when }
- { role: test_failed_when, tags: test_failed_when }
- { role: test_handlers, tags: test_handlers }
- { role: test_until, tags: test_until }
- { role: test_copy, tags: test_copy }
- { role: test_stat, tags: test_stat }
- { role: test_template, tags: test_template }
Expand Down
32 changes: 32 additions & 0 deletions test/integration/roles/test_until/tasks/main.yml
@@ -0,0 +1,32 @@
- shell: python -c "import tempfile; print(tempfile.mkstemp()[1])"
register: tempfilepath

- set_fact:
until_tempfile_path: "{{ tempfilepath.stdout }}"

- name: loop with default retries
shell: echo "run" >> {{ until_tempfile_path }} && wc -w < {{ until_tempfile_path }} | tr -d ' '
register: runcount
until: runcount.stdout | int == 3
delay: 0.01

- assert:
that: runcount.stdout | int == 3

- file: path="{{ until_tempfile_path }}" state=absent

- name: loop with specified max retries
shell: echo "run" >> {{ until_tempfile_path }}
until: 1==0
retries: 5
delay: 0.01
ignore_errors: true

- name: validate output
shell: wc -l < {{ until_tempfile_path }}
register: runcount

- assert:
that: runcount.stdout | int == 6 # initial + 5 retries

- file: path="{{ until_tempfile_path }}" state=absent

0 comments on commit 746ea64

Please sign in to comment.