1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Use wait_timeout as integer in redshift module (#24279)

Fix stricts datatype of wait_timeout to int as module
is using it as integer.

Fixes https://github.com/ansible/ansible/issues/24267

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2017-05-08 19:37:04 +05:30 committed by Sloane Hertel
parent b1efad52a4
commit d072d91aed

View file

@ -436,7 +436,7 @@ def main():
elastic_ip = dict(required=False),
new_cluster_identifier = dict(aliases=['new_identifier']),
wait = dict(type='bool', default=False),
wait_timeout = dict(default=300),
wait_timeout = dict(type='int', default=300),
)
)