Do not use hardcoded httpbin.org in uri tests (#80101)

pull/80106/head
Matt Martz 3 years ago committed by GitHub
parent f64e79be41
commit 060a27f28f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -305,7 +305,7 @@
environment:
https_proxy: 'https://localhost:3456'
uri:
url: 'https://httpbin.org/get'
url: 'https://{{ httpbin_host }}/get'
register: result
ignore_errors: true
@ -318,7 +318,7 @@
environment:
https_proxy: 'https://localhost:3456'
uri:
url: 'https://httpbin.org/get'
url: 'https://{{ httpbin_host }}/get'
use_proxy: no
# Ubuntu12.04 doesn't have python-urllib3, this makes handling required dependencies a pain across all variations

Loading…
Cancel
Save