summary refs log tree commit diff
path: root/synapse/app/synchrotron.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2016-08-30 10:29:42 +0100
committerGitHub <noreply@github.com>2016-08-30 10:29:41 +0100
commitffc807af500641442e2edf79314f3051b7514c41 (patch)
tree517e200bdc05498d71959505aff624673a5ecbc6 /synapse/app/synchrotron.py
parentwarn people to avoid running a HS media repository on the same domain as anot... (diff)
parentAdd new direct message storage functions to slave store (diff)
downloadsynapse-ffc807af500641442e2edf79314f3051b7514c41.tar.xz
Merge pull request #1050 from matrix-org/erikj/fix_device_sync
Add new direct message storage functions to slave store
Diffstat (limited to 'synapse/app/synchrotron.py')
-rw-r--r--synapse/app/synchrotron.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/synchrotron.py b/synapse/app/synchrotron.py
index e3173533e2..b8cedc7af5 100644
--- a/synapse/app/synchrotron.py
+++ b/synapse/app/synchrotron.py
@@ -36,6 +36,7 @@ from synapse.replication.slave.storage.registration import SlavedRegistrationSto
 from synapse.replication.slave.storage.filtering import SlavedFilteringStore
 from synapse.replication.slave.storage.push_rule import SlavedPushRuleStore
 from synapse.replication.slave.storage.presence import SlavedPresenceStore
+from synapse.replication.slave.storage.deviceinbox import SlavedDeviceInboxStore
 from synapse.server import HomeServer
 from synapse.storage.client_ips import ClientIpStore
 from synapse.storage.engines import create_engine
@@ -72,6 +73,7 @@ class SynchrotronSlavedStore(
     SlavedRegistrationStore,
     SlavedFilteringStore,
     SlavedPresenceStore,
+    SlavedDeviceInboxStore,
     BaseSlavedStore,
     ClientIpStore,  # After BaseSlavedStore because the constructor is different
 ):