summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-05-10 18:27:06 +0200
committerDavid Baker <dave@matrix.org>2016-05-10 18:27:06 +0200
commitd46b18a00f0811489299b4835482af2a71dcaf55 (patch)
treed57b2bc9017184d046cbb29a26a081c3a877c4ba /synapse/replication
parentunbreak schema (diff)
downloadsynapse-d46b18a00f0811489299b4835482af2a71dcaf55.tar.xz
Pass through _get_event_txn
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/slave/storage/events.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py
index 86f00b6ff5..56e8b9d906 100644
--- a/synapse/replication/slave/storage/events.py
+++ b/synapse/replication/slave/storage/events.py
@@ -104,6 +104,7 @@ class SlavedEventStore(BaseSlavedStore):
     _invalidate_get_event_cache = DataStore._invalidate_get_event_cache.__func__
     _parse_events_txn = DataStore._parse_events_txn.__func__
     _get_events_txn = DataStore._get_events_txn.__func__
+    _get_event_txn = DataStore._get_event_txn.__func__
     _enqueue_events = DataStore._enqueue_events.__func__
     _do_fetch = DataStore._do_fetch.__func__
     _fetch_events_txn = DataStore._fetch_events_txn.__func__