1
0

Remove redundant override

This commit is contained in:
Olivier 'reivilibre
2025-12-18 14:07:54 +00:00
parent f86d9f8919
commit d7092a3a76

View File

@@ -14,9 +14,7 @@ import logging
from itertools import chain
from typing import (
TYPE_CHECKING,
Any,
Collection,
Iterable,
cast,
)
@@ -90,15 +88,6 @@ class StickyEventsWorkerStore(StateGroupWorkerStore, CacheInvalidationWorkerStor
writers=hs.config.worker.writers.events,
)
def process_replication_rows(
self,
stream_name: str,
instance_name: str,
token: int,
rows: Iterable[Any],
) -> None:
super().process_replication_rows(stream_name, instance_name, token, rows)
def process_replication_position(
self, stream_name: str, instance_name: str, token: int
) -> None: