Skip to content

Commit

Permalink
Merge branch 'serial_should_be_string' of https://github.com/klshxsh/…
Browse files Browse the repository at this point in the history
…ansible into klshxsh-serial_should_be_string
  • Loading branch information
jimi-c committed Oct 12, 2015
2 parents eb60ce1 + ac00c9c commit 4c85ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/playbook/play.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Play(Base, Taggable, Become):
_any_errors_fatal = FieldAttribute(isa='bool', default=False, always_post_validate=True)
_force_handlers = FieldAttribute(isa='bool', always_post_validate=True)
_max_fail_percentage = FieldAttribute(isa='percent', always_post_validate=True)
_serial = FieldAttribute(isa='int', default=0, always_post_validate=True)
_serial = FieldAttribute(isa='percent', default=0, always_post_validate=True)
_strategy = FieldAttribute(isa='string', default='linear', always_post_validate=True)

# =================================================================================
Expand Down

0 comments on commit 4c85ae0

Please sign in to comment.