mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-06-29 23:49:09 +00:00
Remove validate_certs parameter from fetch_url calls
This commit is contained in:
parent
a9017af2bb
commit
d8a81c488e
6 changed files with 10 additions and 11 deletions
|
|
@ -115,7 +115,7 @@ def main():
|
|||
|
||||
# Send the data to airbrake
|
||||
data = urllib.urlencode(params)
|
||||
response, info = fetch_url(module, url, data=data, validate_certs=module.params['validate_certs'])
|
||||
response, info = fetch_url(module, url, data=data)
|
||||
if info['status'] == 200:
|
||||
module.exit_json(changed=True)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue