Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Actually fix bad logging rejecting incoming transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Feb 28, 2022
1 parent 41cf4c2 commit e21a6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/federation/transport/server/federation.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async def on_PUT(
if issue_8631_logger.isEnabledFor(logging.DEBUG):
DEVICE_UPDATE_EDUS = ["m.device_list_update", "m.signing_key_update"]
device_list_updates = [
edu.content
edu.get("content", {})
for edu in transaction_data.get("edus", [])
if edu.get("edu_type") in DEVICE_UPDATE_EDUS
]
Expand Down

0 comments on commit e21a6d2

Please sign in to comment.