Fixing retry/until logic and default value for retries

Fixes #12928
Fixes #12929
This commit is contained in:
James Cammarata 2015-10-27 15:35:56 -04:00
parent 57fe0d6aed
commit 3fc2209ca0
2 changed files with 6 additions and 3 deletions

View file

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