diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-01-21 09:18:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 09:18:10 +0000 |
commit | 227727548546c12e644721d0380be056eead48b0 (patch) | |
tree | 80b817844af70bd006a2a929214f9103c845e5f5 /synapse/replication | |
parent | Add `FrozenEvent.get_state_key` and use it in a couple of places (#11793) (diff) | |
download | synapse-227727548546c12e644721d0380be056eead48b0.tar.xz |
Stop reading from `event_reference_hashes` (#11794)
Preparation for dropping this table altogether. Part of #6574.
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/slave/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py index 0f08372694..a72dad7464 100644 --- a/synapse/replication/slave/storage/events.py +++ b/synapse/replication/slave/storage/events.py @@ -52,8 +52,8 @@ class SlavedEventStore( EventPushActionsWorkerStore, StreamWorkerStore, StateGroupWorkerStore, - EventsWorkerStore, SignatureWorkerStore, + EventsWorkerStore, UserErasureWorkerStore, RelationsWorkerStore, BaseSlavedStore, |