mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-12 04:52:26 +01:00
Fix malformed log line in new federation "catch up" logic (#8442)
This commit is contained in:
parent
61aaf36a1c
commit
3bd3707cb9
2 changed files with 2 additions and 1 deletions
1
changelog.d/8442.bugfix
Normal file
1
changelog.d/8442.bugfix
Normal file
|
@ -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 a new issue