way too much logging coming from http errors

This commit is contained in:
Mouse Reeve 2021-02-22 11:42:45 -08:00
parent 20f4eb74a3
commit 726a8739a3

View file

@ -216,11 +216,7 @@ def get_data(url):
raise ConnectorException()
if not resp.ok:
try:
resp.raise_for_status()
except requests.exceptions.HTTPError as e:
logger.exception(e)
raise ConnectorException()
raise ConnectorException()
try:
data = resp.json()
except ValueError as e: