mirror of
https://github.com/matrix-org/synapse.git
synced 2025-11-04 18:21:35 +01:00
log pdu_failures from incoming transactions
... even if we have no EDUs. This appears to have been introduced in 476899295f5fd6cff64799bcbc84cd4bf9005e33.
This commit is contained in:
parent
4d24becf7f
commit
b75d443caf
@ -168,7 +168,8 @@ class FederationServer(FederationBase):
|
|||||||
edu.content
|
edu.content
|
||||||
)
|
)
|
||||||
|
|
||||||
for failure in getattr(transaction, "pdu_failures", []):
|
pdu_failures = getattr(transaction, "pdu_failures", [])
|
||||||
|
for failure in pdu_failures:
|
||||||
logger.info("Got failure %r", failure)
|
logger.info("Got failure %r", failure)
|
||||||
|
|
||||||
response = {
|
response = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user