diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-15 14:10:32 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-15 14:17:06 +0100 |
commit | 773db62a22ca8be06c9537ae0296952d0e53837e (patch) | |
tree | 41521df8a209d5aa079e2f59ec5779685e91746b /synapse/replication | |
parent | Update docs/workers.rst (diff) | |
download | synapse-773db62a22ca8be06c9537ae0296952d0e53837e.tar.xz |
Rename slave TransactionStore to SlaveTransactionStore
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/slave/storage/transactions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/transactions.py b/synapse/replication/slave/storage/transactions.py index cd6416c47c..3527beb3c9 100644 --- a/synapse/replication/slave/storage/transactions.py +++ b/synapse/replication/slave/storage/transactions.py @@ -18,5 +18,5 @@ from synapse.storage.transactions import TransactionStore from ._base import BaseSlavedStore -class TransactionStore(TransactionStore, BaseSlavedStore): +class SlavedTransactionStore(TransactionStore, BaseSlavedStore): pass |