From 12c8d8ae5fc44f1c931510e2ef5b75af5750d20e Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Wed, 13 May 2026 17:44:39 +0100 Subject: [PATCH] Comment that we should use MultiWriterStreamToken Links https://github.com/element-hq/synapse/issues/19661 --- synapse/types/rest/client/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/synapse/types/rest/client/__init__.py b/synapse/types/rest/client/__init__.py index 799ae746e2..867c3385a4 100644 --- a/synapse/types/rest/client/__init__.py +++ b/synapse/types/rest/client/__init__.py @@ -130,6 +130,8 @@ class SlidingSyncStickyEventsToken: START: ClassVar["SlidingSyncStickyEventsToken"] def __init__(self, *, sticky_events_stream_id: int) -> None: + # FIXME: We should use MultiWriterStreamToken here + # Track: https://github.com/element-hq/synapse/issues/19661 self.sticky_events_stream_id = sticky_events_stream_id @classmethod