summary refs log tree commit diff
path: root/scripts/synapse_port_db
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-05-15 14:33:40 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-05-28 13:54:15 +0100
commit6faa6521cb897428f253cf9a4cb574536005c0a3 (patch)
treeb8260d2d9516150edb13daf719ad31b12f776601 /scripts/synapse_port_db
parent1.12.4 (diff)
downloadsynapse-6faa6521cb897428f253cf9a4cb574536005c0a3.tar.xz
Add ProfileStore to synapse_port_db as it has a dinsic background update
Diffstat (limited to 'scripts/synapse_port_db')
-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 e8b698f3ff..f07b84b629 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db
@@ -48,6 +48,7 @@ from synapse.storage.data_stores.main.events_bg_updates import ( from synapse.storage.data_stores.main.media_repository import ( MediaRepositoryBackgroundUpdateStore, ) +from synapse.storage.data_stores.main.profile import ProfileStore from synapse.storage.data_stores.main.registration import ( RegistrationBackgroundUpdateStore, ) @@ -145,6 +146,7 @@ class Store( DeviceBackgroundUpdateStore, EventsBackgroundUpdatesStore, MediaRepositoryBackgroundUpdateStore, + ProfileStore, RegistrationBackgroundUpdateStore, RoomBackgroundUpdateStore, RoomMemberBackgroundUpdateStore,