mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Fix malformed log line in new federation "catch up" logic (#8442)
This commit is contained in:
parent
61aaf36a1c
commit
3bd3707cb9
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):
|
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)
|
logger.info("Catching up rooms to %s: %r", self._destination, rooms)
|
||||||
|
|
||||||
success = await self._transaction_manager.send_new_transaction(
|
success = await self._transaction_manager.send_new_transaction(
|
||||||
|
Loading…
Reference in New Issue
Block a user