Don't log stack traces for HTTP error responses

pull/4361/head
Erik Johnston 2019-01-08 12:24:48 +00:00
parent b970cb0e96
commit 1371d5b798
1 changed files with 6 additions and 1 deletions

View File

@ -522,8 +522,13 @@ class TransactionQueue(object):
)
except FederationDeniedError as e:
logger.info(e)
except HttpResponseException as e:
logger.warning(
"TX [%s] Received %d response to transaction: %s",
destination, e.code, e,
)
except RequestSendFailed as e:
logger.warning("(TX [%s] Failed to send transaction: %s", destination, e)
logger.warning("TX [%s] Failed to send transaction: %s", destination, e)
for p, _ in pending_pdus:
logger.info("Failed to send event %s to %s", p.event_id,