Correct loop syntax in example (#46178)

This commit is contained in:
Sam Doran 2018-09-27 11:55:11 -04:00 committed by Sandra McCann
parent 065b7ac300
commit 4c929d3a7a

View file

@ -95,8 +95,7 @@ of tasks running concurrently, you can do it this way::
- 5
durations: "{{ item }}"
include_tasks: execute_batch.yml
loop:
- "{{ sleep_durations | batch(2) | list }}"
loop: "{{ sleep_durations | batch(2) | list }}"
#####################
# execute_batch.yml