[cloud] Bugfix: Make wait_timeout integer type in redshift module (#25063)
Fix stricts datatype of wait_timeout to int as module is using it as integer. Fixes #25056 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
31b531ad65
commit
2eb727f1fe
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,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