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

Commit 299b00d

Browse files
authored
Prioritize outbound to-device over device list updates (#13922)
Otherwise device list changes for large accounts can temporarily delay to-device messages.
1 parent ac1b0d0 commit 299b00d

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

changelog.d/13922.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix long-standing bug where device updates could cause delays sending out to-device messages over federation.

synapse/federation/sender/per_destination_queue.py

+16-13
Original file line numberDiff line numberDiff line change
@@ -646,29 +646,32 @@ async def __aenter__(self) -> Tuple[List[EventBase], List[Edu]]:
646646

647647
# We start by fetching device related EDUs, i.e device updates and to
648648
# device messages. We have to keep 2 free slots for presence and rr_edus.
649-
limit = MAX_EDUS_PER_TRANSACTION - 2
650-
651-
device_update_edus, dev_list_id = await self.queue._get_device_update_edus(
652-
limit
653-
)
654-
655-
if device_update_edus:
656-
self._device_list_id = dev_list_id
657-
else:
658-
self.queue._last_device_list_stream_id = dev_list_id
659-
660-
limit -= len(device_update_edus)
649+
device_edu_limit = MAX_EDUS_PER_TRANSACTION - 2
661650

651+
# We prioritize to-device messages so that existing encryption channels
652+
# work. We also keep a few slots spare (by reducing the limit) so that
653+
# we can still trickle out some device list updates.
662654
(
663655
to_device_edus,
664656
device_stream_id,
665-
) = await self.queue._get_to_device_message_edus(limit)
657+
) = await self.queue._get_to_device_message_edus(device_edu_limit - 10)
666658

667659
if to_device_edus:
668660
self._device_stream_id = device_stream_id
669661
else:
670662
self.queue._last_device_stream_id = device_stream_id
671663

664+
device_edu_limit -= len(to_device_edus)
665+
666+
device_update_edus, dev_list_id = await self.queue._get_device_update_edus(
667+
device_edu_limit
668+
)
669+
670+
if device_update_edus:
671+
self._device_list_id = dev_list_id
672+
else:
673+
self.queue._last_device_list_stream_id = dev_list_id
674+
672675
pending_edus = device_update_edus + to_device_edus
673676

674677
# Now add the read receipt EDU.

0 commit comments

Comments
 (0)