diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-12-04 17:57:35 +0000 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-12-04 17:57:35 +0000 |
commit | f8421a14049a78c3554210df8ffd43f797b27647 (patch) | |
tree | 336a5b80b1a780fafc838aa78c62d4b536a4a9b5 /scripts | |
parent | Changelog (diff) | |
download | synapse-f8421a14049a78c3554210df8ffd43f797b27647.tar.xz |
Fix background updates for synapse_port_db
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 705055ce43..0007a15f59 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -47,6 +47,7 @@ from synapse.storage.data_stores.main.media_repository import ( from synapse.storage.data_stores.main.registration import ( RegistrationBackgroundUpdateStore, ) +from synapse.storage.data_stores.main.room import RoomBackgroundUpdateStore from synapse.storage.data_stores.main.roommember import RoomMemberBackgroundUpdateStore from synapse.storage.data_stores.main.search import SearchBackgroundUpdateStore from synapse.storage.data_stores.main.state import StateBackgroundUpdateStore @@ -131,6 +132,7 @@ class Store( EventsBackgroundUpdatesStore, MediaRepositoryBackgroundUpdateStore, RegistrationBackgroundUpdateStore, + RoomBackgroundUpdateStore, RoomMemberBackgroundUpdateStore, SearchBackgroundUpdateStore, StateBackgroundUpdateStore, |