summary refs log tree commit diff
path: root/synapse/_scripts
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2022-06-30 13:27:24 -0400
committerPatrick Cloke <patrickc@matrix.org>2022-06-30 13:27:24 -0400
commitb0366853cae1e08d30d44757d142f8670b7ec35c (patch)
treefc219b70153c400282180f5071c7daccc5b841c4 /synapse/_scripts
parentDon't process /send requests for users who have hit their ratelimit (#13134) (diff)
parentFix unread counts on large servers (#13140) (diff)
downloadsynapse-b0366853cae1e08d30d44757d142f8670b7ec35c.tar.xz
Merge remote-tracking branch 'origin/release-v1.62' into develop
Diffstat (limited to 'synapse/_scripts')
-rwxr-xr-xsynapse/_scripts/synapse_port_db.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/synapse/_scripts/synapse_port_db.py b/synapse/_scripts/synapse_port_db.py
index f3f9c6d54c..d3b4887f69 100755
--- a/synapse/_scripts/synapse_port_db.py
+++ b/synapse/_scripts/synapse_port_db.py
@@ -58,9 +58,7 @@ from synapse.storage.databases.main.client_ips import ClientIpBackgroundUpdateSt
 from synapse.storage.databases.main.deviceinbox import DeviceInboxBackgroundUpdateStore
 from synapse.storage.databases.main.devices import DeviceBackgroundUpdateStore
 from synapse.storage.databases.main.end_to_end_keys import EndToEndKeyBackgroundStore
-from synapse.storage.databases.main.event_push_actions import (
-    EventPushActionsWorkerStore,
-)
+from synapse.storage.databases.main.event_push_actions import EventPushActionsStore
 from synapse.storage.databases.main.events_bg_updates import (
     EventsBackgroundUpdatesStore,
 )
@@ -202,7 +200,7 @@ R = TypeVar("R")
 
 
 class Store(
-    EventPushActionsWorkerStore,
+    EventPushActionsStore,
     ClientIpBackgroundUpdateStore,
     DeviceInboxBackgroundUpdateStore,
     DeviceBackgroundUpdateStore,