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/replication/slave/storage/receipts.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/replication/slave/storage/receipts.py')
-rw-r--r-- | synapse/replication/slave/storage/receipts.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/replication/slave/storage/receipts.py b/synapse/replication/slave/storage/receipts.py index 3826b87dec..407862a2b2 100644 --- a/synapse/replication/slave/storage/receipts.py +++ b/synapse/replication/slave/storage/receipts.py @@ -15,8 +15,6 @@ from synapse.storage.databases.main.receipts import ReceiptsWorkerStore -from ._base import BaseSlavedStore - -class SlavedReceiptsStore(ReceiptsWorkerStore, BaseSlavedStore): +class SlavedReceiptsStore(ReceiptsWorkerStore): pass |