mirror of
https://mau.dev/maunium/synapse.git
synced 2025-01-07 13:14:47 +01:00
Fix duplicate logging of exceptions in transaction processing (#9780)
There's no point logging this twice.
This commit is contained in:
parent
abc814dcbf
commit
f946450184
2 changed files with 4 additions and 7 deletions
1
changelog.d/9780.bugfix
Normal file
1
changelog.d/9780.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix duplicate logging of exceptions thrown during federation transaction processing.
|
|
@ -425,13 +425,9 @@ class FederationSendServlet(BaseFederationServlet):
|
||||||
logger.exception(e)
|
logger.exception(e)
|
||||||
return 400, {"error": "Invalid transaction"}
|
return 400, {"error": "Invalid transaction"}
|
||||||
|
|
||||||
try:
|
|
||||||
code, response = await self.handler.on_incoming_transaction(
|
code, response = await self.handler.on_incoming_transaction(
|
||||||
origin, transaction_data
|
origin, transaction_data
|
||||||
)
|
)
|
||||||
except Exception:
|
|
||||||
logger.exception("on_incoming_transaction failed")
|
|
||||||
raise
|
|
||||||
|
|
||||||
return code, response
|
return code, response
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue