diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-05-17 11:46:34 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-05-17 11:46:34 +0100 |
commit | f19992cae5b72efeabebcf6fe8f3116b300bc818 (patch) | |
tree | 997e7d49d4619686f7086a5b19a4c8cdc3f9ba57 /synapse/app/synchrotron.py | |
parent | Fix client resource prefixes (diff) | |
download | synapse-f19992cae5b72efeabebcf6fe8f3116b300bc818.tar.xz |
Add a SlavedApplicationServiceStore
Diffstat (limited to 'synapse/app/synchrotron.py')
-rw-r--r-- | synapse/app/synchrotron.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/synchrotron.py b/synapse/app/synchrotron.py index 97f6001045..ffd21de99b 100644 --- a/synapse/app/synchrotron.py +++ b/synapse/app/synchrotron.py @@ -26,6 +26,7 @@ from synapse.rest.client.v2_alpha import sync from synapse.replication.slave.storage.events import SlavedEventStore from synapse.replication.slave.storage.receipts import SlavedReceiptsStore from synapse.replication.slave.storage.account_data import SlavedAccountDataStore +from synapse.replication.slave.storage.appservice import SlavedApplicationServiceStore from synapse.server import HomeServer from synapse.storage.engines import create_engine from synapse.util.httpresourcetree import create_resource_tree @@ -93,6 +94,7 @@ class SynchrotronSlavedStore( SlavedEventStore, SlavedReceiptsStore, SlavedAccountDataStore, + SlavedApplicationServiceStore, ): pass |