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

Commit

Permalink
Fixed undefined variable error in catchup
Browse files Browse the repository at this point in the history
Broke in #9640
  • Loading branch information
erikjohnston committed Mar 22, 2021
1 parent d600d45 commit 32d94a6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions synapse/federation/sender/per_destination_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,8 @@ async def _catch_up_transmission_loop(self) -> None:
# the other sending servers are up).
if new_pdus:
room_catchup_pdus = new_pdus
else:
room_catchup_pdus[pdu]

logger.info(
"Catching up rooms to %s: %r", self._destination, pdu.room_id
Expand Down

0 comments on commit 32d94a6

Please sign in to comment.