mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
Fixing retry/until logic and default value for retries
Fixes #12928 Fixes #12929
This commit is contained in:
parent
57fe0d6aed
commit
3fc2209ca0
2 changed files with 6 additions and 3 deletions
|
@ -81,7 +81,7 @@ class Task(Base, Conditional, Taggable, Become):
|
|||
_notify = FieldAttribute(isa='list')
|
||||
_poll = FieldAttribute(isa='int')
|
||||
_register = FieldAttribute(isa='string')
|
||||
_retries = FieldAttribute(isa='int', default=1)
|
||||
_retries = FieldAttribute(isa='int', default=3)
|
||||
_until = FieldAttribute(isa='list') # ?
|
||||
|
||||
def __init__(self, block=None, role=None, task_include=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue