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

Commit

Permalink
Fix malformed log line in new federation "catch up" logic (#8442)
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh authored Oct 2, 2020
1 parent 61aaf36 commit 3bd3707
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/8442.bugfix
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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

0 comments on commit 3bd3707

Please sign in to comment.