summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorWill Hunt <willh@matrix.org>2021-03-04 10:26:06 +0000
committerWill Hunt <willh@matrix.org>2021-03-04 10:26:06 +0000
commit316db51bed3a34798e13ec9f99418de7d9a48726 (patch)
treeb6b6996c0095196c23c58574c0fe46cffd0503ce /scripts
parentMerge remote-tracking branch 'origin/develop' into hs/hacked-together-event-c... (diff)
parentFix additional type hints from Twisted upgrade. (#9518) (diff)
downloadsynapse-316db51bed3a34798e13ec9f99418de7d9a48726.tar.xz
Merge remote-tracking branch 'origin/develop' into hs/hacked-together-event-cache
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/synapse_port_db2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db
index 011eb3d0f6..4a5b6433ae 100755
--- a/scripts/synapse_port_db
+++ b/scripts/synapse_port_db
@@ -48,6 +48,7 @@ from synapse.storage.databases.main.events_bg_updates import (
 from synapse.storage.databases.main.media_repository import (
     MediaRepositoryBackgroundUpdateStore,
 )
+from synapse.storage.databases.main.pusher import PusherWorkerStore
 from synapse.storage.databases.main.registration import (
     RegistrationBackgroundUpdateStore,
     find_max_generated_user_id_localpart,
@@ -178,6 +179,7 @@ class Store(
     UserDirectoryBackgroundUpdateStore,
     EndToEndKeyBackgroundStore,
     StatsStore,
+    PusherWorkerStore,
 ):
     def execute(self, f, *args, **kwargs):
         return self.db_pool.runInteraction(f.__name__, f, *args, **kwargs)