summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-07-26 11:45:12 +0100
committerErik Johnston <erik@matrix.org>2018-08-06 15:23:38 +0100
commit1e2bed9656a4826ed7fdc82bc096df775bc38baf (patch)
treefd2371645211f287dd8681b69c5ff3b9374317b4 /synapse/replication
parentAdd EDU/query handling over replication (diff)
downloadsynapse-1e2bed9656a4826ed7fdc82bc096df775bc38baf.tar.xz
Import all functions from TransactionStore
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/slave/storage/transactions.py13
1 files changed, 2 insertions, 11 deletions
diff --git a/synapse/replication/slave/storage/transactions.py b/synapse/replication/slave/storage/transactions.py
index 9c9a5eadd9..cd6416c47c 100644
--- a/synapse/replication/slave/storage/transactions.py
+++ b/synapse/replication/slave/storage/transactions.py
@@ -13,19 +13,10 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-from synapse.storage import DataStore
 from synapse.storage.transactions import TransactionStore
 
 from ._base import BaseSlavedStore
 
 
-class TransactionStore(BaseSlavedStore):
-    get_destination_retry_timings = TransactionStore.__dict__[
-        "get_destination_retry_timings"
-    ]
-    _get_destination_retry_timings = DataStore._get_destination_retry_timings.__func__
-    set_destination_retry_timings = DataStore.set_destination_retry_timings.__func__
-    _set_destination_retry_timings = DataStore._set_destination_retry_timings.__func__
-
-    prep_send_transaction = DataStore.prep_send_transaction.__func__
-    delivered_txn = DataStore.delivered_txn.__func__
+class TransactionStore(TransactionStore, BaseSlavedStore):
+    pass