mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Set explicit type for timeout (#2809)
vmware_maintenancemode.py needs explicit type for timeout, otherwise it reads timeout as string and breaks.
This commit is contained in:
@@ -178,7 +178,7 @@ def main():
|
||||
'evacuateAllData',
|
||||
'noAction']),
|
||||
evacuate=dict(required=False, type='bool', default=False),
|
||||
timeout=dict(required=False, default=0),
|
||||
timeout=dict(required=False, default=0, type='int'),
|
||||
state=dict(required=False,
|
||||
default='present',
|
||||
choices=['present', 'absent'])))
|
||||
|
||||
Reference in New Issue
Block a user