@@ -646,29 +646,32 @@ async def __aenter__(self) -> Tuple[List[EventBase], List[Edu]]:
646
646
647
647
# We start by fetching device related EDUs, i.e device updates and to
648
648
# 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
661
650
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.
662
654
(
663
655
to_device_edus ,
664
656
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 )
666
658
667
659
if to_device_edus :
668
660
self ._device_stream_id = device_stream_id
669
661
else :
670
662
self .queue ._last_device_stream_id = device_stream_id
671
663
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
+
672
675
pending_edus = device_update_edus + to_device_edus
673
676
674
677
# Now add the read receipt EDU.
0 commit comments