diff --git a/changelog.d/9664.misc b/changelog.d/9664.misc new file mode 100644 index 0000000000000000000000000000000000000000..3d410ed4cdfec833d16fdce42b72a69f95249251 --- /dev/null +++ b/changelog.d/9664.misc @@ -0,0 +1 @@ +Improve performance of federation catch up by sending events the latest events in the room to the remote, rather than just the last event sent by the local server. diff --git a/synapse/federation/sender/per_destination_queue.py b/synapse/federation/sender/per_destination_queue.py index af85fe0a1ec122f585590e7642a03b3ffdbfebdd..89df9a619b7487e8439b40d9d90b782569cd2953 100644 --- a/synapse/federation/sender/per_destination_queue.py +++ b/synapse/federation/sender/per_destination_queue.py @@ -480,6 +480,8 @@ class PerDestinationQueue: # 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