Skip to content

Commit

Permalink
Correct loop syntax in example (ansible#46178)
Browse files Browse the repository at this point in the history
  • Loading branch information
samdoran authored and samccann committed Sep 27, 2018
1 parent 065b7ac commit 4c929d3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/docsite/rst/user_guide/playbooks_async.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4c929d3

Please sign in to comment.