mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-28 13:21:25 -07:00
allows loop pause for subseconds (#50461)
* allows loop pause for subseconds * skip test on os x and bsd since date commands lacks nano fixes #49951
This commit is contained in:
parent
d4dbc7f2e0
commit
30da7a363c
3 changed files with 22 additions and 1 deletions
|
@ -28,7 +28,7 @@ class LoopControl(FieldAttributeBase):
|
|||
_loop_var = FieldAttribute(isa='str', default='item')
|
||||
_index_var = FieldAttribute(isa='str')
|
||||
_label = FieldAttribute(isa='str')
|
||||
_pause = FieldAttribute(isa='int', default=0)
|
||||
_pause = FieldAttribute(isa='float', default=0)
|
||||
_extended = FieldAttribute(isa='bool')
|
||||
|
||||
def __init__(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue