Change log level of cert-realated SSL errors

These can happen quite often and are not errors since we recover

Change-Id: I2c33bbfac3b27dd24a0c4aa4b3a5b2c5de215678
This commit is contained in:
Anna Khmelnitsky 2017-06-01 08:33:25 -07:00
parent ae4ca078d6
commit c10291bfad
1 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ class TimeoutSession(requests.Session):
# This is most probably "client cert not found" error (this
# happens when server closed the connection and requests
# reopen it). Try reloading client cert.
LOG.warning("SSL error: %s, retrying.." % e)
LOG.debug("SSL error: %s, retrying.." % e)
except OSError as e:
# Lack of client cert file can come in form of OSError,
# in this case filename will appear in the error. Try
@ -125,7 +125,7 @@ class TimeoutSession(requests.Session):
if self._cert_provider.filename() not in str(e):
raise e
# Don't expose cert file name to the logs
LOG.warning("Reloading client certificate..")
LOG.info("Reloading client certificate..")
# The following with statement allows for preparing certificate and
# private key file and dispose it once connections are spawned