mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
VMware: Add timeout parameter for vmware module vsphere_copy (#46762)
* Enhancement: add timeout parameter for vmware module vsphere_copy
This commit is contained in:
parent
92103bf5d0
commit
44044f969d
1 changed files with 9 additions and 1 deletions
|
@ -58,6 +58,12 @@ options:
|
|||
set to C(no) when no other option exists.
|
||||
default: 'yes'
|
||||
type: bool
|
||||
timeout:
|
||||
description:
|
||||
- The timeout in seconds for the upload to the datastore.
|
||||
default: 10
|
||||
type: int
|
||||
version_added: "2.8"
|
||||
|
||||
notes:
|
||||
- "This module ought to be run from a system that can access vCenter directly and has the file to transfer.
|
||||
|
@ -126,6 +132,7 @@ def main():
|
|||
datastore=dict(required=True),
|
||||
dest=dict(required=True, aliases=['path']),
|
||||
validate_certs=dict(default=True, type='bool'),
|
||||
timeout=dict(default=10, type='int')
|
||||
),
|
||||
# Implementing check-mode using HEAD is impossible, since size/date is not 100% reliable
|
||||
supports_check_mode=False,
|
||||
|
@ -139,6 +146,7 @@ def main():
|
|||
datastore = module.params.get('datastore')
|
||||
dest = module.params.get('dest')
|
||||
validate_certs = module.params.get('validate_certs')
|
||||
timeout = module.params.get('timeout')
|
||||
|
||||
fd = open(src, "rb")
|
||||
atexit.register(fd.close)
|
||||
|
@ -155,7 +163,7 @@ def main():
|
|||
}
|
||||
|
||||
try:
|
||||
r = open_url(url, data=data, headers=headers, method='PUT',
|
||||
r = open_url(url, data=data, headers=headers, method='PUT', timeout=timeout,
|
||||
url_username=login, url_password=password, validate_certs=validate_certs,
|
||||
force_basic_auth=True)
|
||||
except socket.error as e:
|
||||
|
|
Loading…
Reference in a new issue