mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
simpler loop_control defaults (#34008)
This commit is contained in:
parent
76590ab8a5
commit
8c6d823963
4 changed files with 7 additions and 7 deletions
|
@ -254,10 +254,10 @@ class TaskExecutor:
|
|||
label = None
|
||||
loop_pause = 0
|
||||
if self._task.loop_control:
|
||||
# the value may be 'None', so we still need to default it back to 'item'
|
||||
loop_var = self._task.loop_control.loop_var or 'item'
|
||||
loop_var = self._task.loop_control.loop_var
|
||||
loop_pause = self._task.loop_control.pause
|
||||
# the these may be 'None', so we still need to default to something useful
|
||||
label = self._task.loop_control.label or ('{{' + loop_var + '}}')
|
||||
loop_pause = self._task.loop_control.pause or 0
|
||||
|
||||
if loop_var in task_vars:
|
||||
display.warning(u"The loop variable '%s' is already in use. "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue