diff options
author | Erik Johnston <erik@matrix.org> | 2022-07-14 14:57:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 13:57:02 +0000 |
commit | 0ca4172b5df6ea5f3e30ca6b83e51d230213971c (patch) | |
tree | 9bdd2735e11e340d1b3344b1ebbf29b4fc8576a0 /synapse/storage/controllers/__init__.py | |
parent | Allow rate limiters to passively record actions they cannot limit (#13253) (diff) | |
download | synapse-0ca4172b5df6ea5f3e30ca6b83e51d230213971c.tar.xz |
Don't pull out state in `compute_event_context` for unconflicted state (#13267)
Diffstat (limited to 'synapse/storage/controllers/__init__.py')
-rw-r--r-- | synapse/storage/controllers/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/controllers/__init__.py b/synapse/storage/controllers/__init__.py index 55649719f6..45101cda7a 100644 --- a/synapse/storage/controllers/__init__.py +++ b/synapse/storage/controllers/__init__.py @@ -43,4 +43,6 @@ class StorageControllers: self.persistence = None if stores.persist_events: - self.persistence = EventsPersistenceStorageController(hs, stores) + self.persistence = EventsPersistenceStorageController( + hs, stores, self.state + ) |