mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:46:01 -04:00
add event id to logcontext when handling incoming PDUs (#10936)
This commit is contained in:
parent
94b620a5ed
commit
176aa55fd5
2 changed files with 5 additions and 1 deletions
|
@ -1008,7 +1008,10 @@ class FederationServer(FederationBase):
|
|||
async with lock:
|
||||
logger.info("handling received PDU: %s", event)
|
||||
try:
|
||||
await self._federation_event_handler.on_receive_pdu(origin, event)
|
||||
with nested_logging_context(event.event_id):
|
||||
await self._federation_event_handler.on_receive_pdu(
|
||||
origin, event
|
||||
)
|
||||
except FederationError as e:
|
||||
# XXX: Ideally we'd inform the remote we failed to process
|
||||
# the event, but we can't return an error in the transaction
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue