diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-09-08 13:43:43 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-09-08 13:43:43 +0100 |
commit | fa9d36e050d942e76b2bd6a6d2c190215a1dac39 (patch) | |
tree | 806152a98d66013b94882c85cb1cb6129be62e78 /synapse/replication | |
parent | Add a new method to enqueue the device messages rather than sending a dummy EDU (diff) | |
parent | Log delta files we're applying (diff) | |
download | synapse-fa9d36e050d942e76b2bd6a6d2c190215a1dac39.tar.xz |
Merge branch 'develop' into markjh/direct_to_device_federation
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/slave/storage/events.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py index cbebd5b2f7..15c52774a2 100644 --- a/synapse/replication/slave/storage/events.py +++ b/synapse/replication/slave/storage/events.py @@ -86,6 +86,9 @@ class SlavedEventStore(BaseSlavedStore): _get_state_groups_from_groups = ( StateStore.__dict__["_get_state_groups_from_groups"] ) + _get_state_groups_from_groups_txn = ( + DataStore._get_state_groups_from_groups_txn.__func__ + ) _get_state_group_from_group = ( StateStore.__dict__["_get_state_group_from_group"] ) |