summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorNick Mills-Barrett <nick@beeper.com>2022-07-17 23:19:43 +0200
committerGitHub <noreply@github.com>2022-07-17 22:19:43 +0100
commit5d4028f217f178fcd384d5bfddd92225b4e78c51 (patch)
tree3123cad0bdeea027069318cbb12a1bb65b4dc7de /synapse/storage/_base.py
parentUse HTTPStatus constants in place of literals in tests. (#13297) (diff)
downloadsynapse-5d4028f217f178fcd384d5bfddd92225b4e78c51.tar.xz
Make all `process_replication_rows` methods async (#13304)
More prep work for asyncronous caching, also makes all process_replication_rows methods consistent (presence handler already is so).

Signed off by Nick @ Beeper (@Fizzadar)
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index b8c8dcd76b..822108e83b 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -47,7 +47,7 @@ class SQLBaseStore(metaclass=ABCMeta):
         self.database_engine = database.engine
         self.db_pool = database
 
-    def process_replication_rows(
+    async def process_replication_rows(
         self,
         stream_name: str,
         instance_name: str,