summary refs log tree commit diff
path: root/synapse/app/appservice.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-04-06 10:20:50 +0100
committerErik Johnston <erik@matrix.org>2018-04-06 10:20:50 +0100
commitedbeed06ca83a5420fd7337cf954bc29a443d00c (patch)
tree60cc934ec90d7b1147da62f02400dde9c99d25c0 /synapse/app/appservice.py
parentAdd cache for if ASes have users in a room (diff)
downloadsynapse-edbeed06ca83a5420fd7337cf954bc29a443d00c.tar.xz
Fix MRO for replication stores
Diffstat (limited to 'synapse/app/appservice.py')
-rw-r--r--synapse/app/appservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/appservice.py b/synapse/app/appservice.py

index f2540023a7..0da35750b0 100644 --- a/synapse/app/appservice.py +++ b/synapse/app/appservice.py
@@ -42,7 +42,7 @@ logger = logging.getLogger("synapse.app.appservice") class AppserviceSlaveStore( - DirectoryStore, SlavedEventStore, SlavedApplicationServiceStore, + DirectoryStore, SlavedApplicationServiceStore, SlavedEventStore, SlavedRegistrationStore, ): pass