Correct loop syntax in example (#46178)

pull/46217/head
Sam Doran 6 years ago committed by Sandra McCann
parent 065b7ac300
commit 4c929d3a7a

@ -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

Loading…
Cancel
Save