mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
Fix redirects for get_url
* fetch_url shouldn't both accept follow_redirects and support follow_redircts via module.params * Default follow_redirects for open_url should be 'urllib2' * Add redirect test for get_url
This commit is contained in:
parent
a302ba0ab4
commit
098333b2ec
2 changed files with 8 additions and 5 deletions
|
@ -676,7 +676,7 @@ def maybe_add_ssl_handler(url, validate_certs):
|
|||
def open_url(url, data=None, headers=None, method=None, use_proxy=True,
|
||||
force=False, last_mod_time=None, timeout=10, validate_certs=True,
|
||||
url_username=None, url_password=None, http_agent=None,
|
||||
force_basic_auth=False, follow_redirects=False):
|
||||
force_basic_auth=False, follow_redirects='urllib2'):
|
||||
'''
|
||||
Fetches a file from an HTTP/FTP server using urllib2
|
||||
'''
|
||||
|
@ -809,8 +809,7 @@ def url_argument_spec():
|
|||
)
|
||||
|
||||
def fetch_url(module, url, data=None, headers=None, method=None,
|
||||
use_proxy=True, force=False, last_mod_time=None, timeout=10,
|
||||
follow_redirects=False):
|
||||
use_proxy=True, force=False, last_mod_time=None, timeout=10):
|
||||
'''
|
||||
Fetches a file from an HTTP/FTP server using urllib2. Requires the module environment
|
||||
'''
|
||||
|
@ -828,8 +827,7 @@ def fetch_url(module, url, data=None, headers=None, method=None,
|
|||
http_agent = module.params.get('http_agent', None)
|
||||
force_basic_auth = module.params.get('force_basic_auth', '')
|
||||
|
||||
if not follow_redirects:
|
||||
follow_redirects = module.params.get('follow_redirects', False)
|
||||
follow_redirects = module.params.get('follow_redirects', 'urllib2')
|
||||
|
||||
r = None
|
||||
info = dict(url=url)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue