mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04: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
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)
|
||||
return 400, {"error": "Invalid transaction"}
|
||||
|
||||
try:
|
||||
code, response = await self.handler.on_incoming_transaction(
|
||||
origin, transaction_data
|
||||
)
|
||||
except Exception:
|
||||
logger.exception("on_incoming_transaction failed")
|
||||
raise
|
||||
code, response = await self.handler.on_incoming_transaction(
|
||||
origin, transaction_data
|
||||
)
|
||||
|
||||
return code, response
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user