Fix malformed log line in new federation "catch up" logic (#8442)
parent
61aaf36a1c
commit
3bd3707cb9
|
@ -0,0 +1 @@
|
|||
Fix malformed log line in new federation "catch up" logic.
|
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue