Add logging messages

This commit is contained in:
Abby Gourlay 2020-03-20 23:43:17 +00:00
commit 2ab6813992

View file

@ -291,6 +291,7 @@ class ConnectionManager(object):
url = urllib3.util.parse_url(address.strip()) url = urllib3.util.parse_url(address.strip())
# Default to using https # Default to using https
LOG.info("Attempting HTTPS connection")
url = url._replace(scheme='https') url = url._replace(scheme='https')
# Test if server is reachable over https # Test if server is reachable over https
@ -300,6 +301,7 @@ class ConnectionManager(object):
else: else:
# Server didn't give an expected response over https # Server didn't give an expected response over https
# Try http instead # Try http instead
LOG.info("HTTPS connection failed. Falling back to HTTP")
url = url._replace(scheme='http') url = url._replace(scheme='http')
if url.port == 80: if url.port == 80:
url = url._replace(port=None) url = url._replace(port=None)