0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-22 20:48:20 +02:00

Fix typo in #13320 which could cause log spam (#14347)

This commit is contained in:
David Robertson 2022-11-01 19:20:35 +00:00 committed by GitHub
parent 59ca73006c
commit d4fac8a3e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/14347.bugfix Normal file
View file

@ -0,0 +1 @@
Fix a bug introduced in Synapse 1.64.0rc1 which could cause log spam when fetching events from other homeservers.

View file

@ -465,7 +465,7 @@ class FederationClient(FederationBase):
pdu_attempts[destination] = now
logger.info(
"get_pdu(event_id=): Failed to get PDU from %s because %s",
"get_pdu(event_id=%s): Failed to get PDU from %s because %s",
event_id,
destination,
e,