diff options
author | Shay <hillerys@element.io> | 2022-05-18 10:15:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 10:15:52 -0700 |
commit | 19d79b6ebe3070ad7352f24549fbafb9dee44b75 (patch) | |
tree | 130edc5d9b8b8249b21e47dbd842a053390b4d93 /synapse/storage/databases/state | |
parent | Add documentation for cancellation of request processing (#12761) (diff) | |
download | synapse-19d79b6ebe3070ad7352f24549fbafb9dee44b75.tar.xz |
Refactor `resolve_state_groups_for_events` to not pull out full state when no state resolution happens. (#12775)
Diffstat (limited to 'synapse/storage/databases/state')
-rw-r--r-- | synapse/storage/databases/state/store.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/state/store.py b/synapse/storage/databases/state/store.py index 7614d76ac6..609a2b88bf 100644 --- a/synapse/storage/databases/state/store.py +++ b/synapse/storage/databases/state/store.py @@ -189,7 +189,7 @@ class StateGroupDataStore(StateBackgroundUpdateStore, SQLBaseStore): group: int, state_filter: StateFilter, ) -> Tuple[MutableStateMap[str], bool]: - """Checks if group is in cache. See `_get_state_for_groups` + """Checks if group is in cache. See `get_state_for_groups` Args: cache: the state group cache to use |