diff options
author | David Robertson <davidr@element.io> | 2022-11-01 19:20:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 19:20:35 +0000 |
commit | d4fac8a3e27ab3e133c5e5ac603c8d937a1fd86c (patch) | |
tree | 9cee42c8e08d1ab067cb03c0d5dce4de9f58120f | |
parent | Enable testing MSC3874 in complement. (#14339) (diff) | |
download | synapse-d4fac8a3e27ab3e133c5e5ac603c8d937a1fd86c.tar.xz |
Fix typo in #13320 which could cause log spam (#14347)
-rw-r--r-- | changelog.d/14347.bugfix | 1 | ||||
-rw-r--r-- | synapse/federation/federation_client.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/14347.bugfix b/changelog.d/14347.bugfix new file mode 100644 index 0000000000..91975757ae --- /dev/null +++ b/changelog.d/14347.bugfix @@ -0,0 +1 @@ +Fix a bug introduced in Synapse 1.64.0rc1 which could cause log spam when fetching events from other homeservers. diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index fa225182be..c4c0bc7315 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -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, |