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

Fix malformed log line in new federation "catch up" logic #8442

Merged
merged 1 commit into from Oct 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/8442.bugfix
@@ -0,0 +1 @@
Fix malformed log line in new federation "catch up" logic.
2 changes: 1 addition & 1 deletion synapse/federation/sender/per_destination_queue.py
Expand Up @@ -490,7 +490,7 @@ async def _catch_up_transmission_loop(self) -> None:
)

if logger.isEnabledFor(logging.INFO):
rooms = (p.room_id for p in catchup_pdus)
rooms = [p.room_id for p in catchup_pdus]
logger.info("Catching up rooms to %s: %r", self._destination, rooms)

success = await self._transaction_manager.send_new_transaction(
Expand Down