diff options
author | Nick Mills-Barrett <nick@beeper.com> | 2022-07-21 12:51:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-21 11:51:30 +0100 |
commit | 190f49d8aba3b18bb9b9c2cd8352dc9b402d6bbf (patch) | |
tree | da19b669036987ba26fb1948af66c3b6356a3e66 /synapse/app/admin_cmd.py | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-190f49d8aba3b18bb9b9c2cd8352dc9b402d6bbf.tar.xz |
Use cache store remove base slaved (#13329)
This comes from two identical definitions in each of the base stores, and means the base slaved store is now empty and can be removed.
Diffstat (limited to 'synapse/app/admin_cmd.py')
-rw-r--r-- | synapse/app/admin_cmd.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/app/admin_cmd.py b/synapse/app/admin_cmd.py index 87f82bd9a5..53ec33bcd1 100644 --- a/synapse/app/admin_cmd.py +++ b/synapse/app/admin_cmd.py @@ -28,7 +28,6 @@ from synapse.config.homeserver import HomeServerConfig from synapse.config.logger import setup_logging from synapse.events import EventBase from synapse.handlers.admin import ExfiltrationWriter -from synapse.replication.slave.storage._base import BaseSlavedStore from synapse.replication.slave.storage.account_data import SlavedAccountDataStore from synapse.replication.slave.storage.appservice import SlavedApplicationServiceStore from synapse.replication.slave.storage.deviceinbox import SlavedDeviceInboxStore @@ -58,7 +57,6 @@ class AdminCmdSlavedStore( SlavedDeviceStore, SlavedPushRuleStore, SlavedEventStore, - BaseSlavedStore, RoomWorkerStore, ): def __init__( |