fix: warn instead of error

Refs #106
This commit is contained in:
Jose Diaz-Gonzalez
2019-02-21 15:40:39 -05:00
committed by GitHub
parent 57ab5ce1a2
commit c86163bfe6

View File

@@ -446,7 +446,7 @@ def _get_response(request, auth, template):
errors, should_continue = _request_http_error(exc, auth, errors) # noqa
r = exc
except URLError as e:
log_error(e.reason)
log_warning(e.reason)
should_continue = _request_url_error(template, retry_timeout)
if not should_continue:
raise