diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-02 11:05:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 11:05:29 +0100 |
commit | 3bd3707cb9615b5a9f7f7449ebe3ec495017ee9f (patch) | |
tree | 14e8dbbceda1ea816d0bbf3b08845d3d51030d78 /synapse | |
parent | Do not expose the experimental appservice login flow to clients. (#8440) (diff) | |
download | synapse-3bd3707cb9615b5a9f7f7449ebe3ec495017ee9f.tar.xz |
Fix malformed log line in new federation "catch up" logic (#8442)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/federation/sender/per_destination_queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/sender/per_destination_queue.py b/synapse/federation/sender/per_destination_queue.py index 2657767fd1..bc99af3fdd 100644 --- a/synapse/federation/sender/per_destination_queue.py +++ b/synapse/federation/sender/per_destination_queue.py @@ -490,7 +490,7 @@ class PerDestinationQueue: ) 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( |