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:
parent
b1efad52a4
commit
d072d91aed
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue