diff options
author | Erik Johnston <erik@matrix.org> | 2022-07-18 14:28:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 14:28:14 +0100 |
commit | f721f1baba9cdefc0bff540c3b93710b36eecee9 (patch) | |
tree | 5d754da53f48e96620b28de63295bda6193eb80b /synapse/handlers | |
parent | Don't pull out full state when sending dummy events (#13310) (diff) | |
download | synapse-f721f1baba9cdefc0bff540c3b93710b36eecee9.tar.xz |
Revert "Make all `process_replication_rows` methods async (#13304)" (#13312)
This reverts commit 5d4028f217f178fcd384d5bfddd92225b4e78c51.
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/typing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/typing.py b/synapse/handlers/typing.py index 26edeeca3c..d104ea07fe 100644 --- a/synapse/handlers/typing.py +++ b/synapse/handlers/typing.py @@ -158,7 +158,7 @@ class FollowerTypingHandler: except Exception: logger.exception("Error pushing typing notif to remotes") - async def process_replication_rows( + def process_replication_rows( self, token: int, rows: List[TypingStream.TypingStreamRow] ) -> None: """Should be called whenever we receive updates for typing stream.""" @@ -444,7 +444,7 @@ class TypingWriterHandler(FollowerTypingHandler): return rows, current_id, limited - async def process_replication_rows( + def process_replication_rows( self, token: int, rows: List[TypingStream.TypingStreamRow] ) -> None: # The writing process should never get updates from replication. |