diff options
author | Will Hunt <willh@matrix.org> | 2021-03-04 10:26:06 +0000 |
---|---|---|
committer | Will Hunt <willh@matrix.org> | 2021-03-04 10:26:06 +0000 |
commit | 316db51bed3a34798e13ec9f99418de7d9a48726 (patch) | |
tree | b6b6996c0095196c23c58574c0fe46cffd0503ce /scripts | |
parent | Merge remote-tracking branch 'origin/develop' into hs/hacked-together-event-c... (diff) | |
parent | Fix additional type hints from Twisted upgrade. (#9518) (diff) | |
download | synapse-316db51bed3a34798e13ec9f99418de7d9a48726.tar.xz |
Merge remote-tracking branch 'origin/develop' into hs/hacked-together-event-cache
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/synapse_port_db | 2 |
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) |