diff options
author | Matthew Hodgson <matthew@arasphere.net> | 2017-01-05 13:47:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 13:47:42 +0000 |
commit | dafd50d178ef36710130ffb830929f4a9ed3710c (patch) | |
tree | 1181b9f2343cc283136d413abdfbe848a70daee3 /synapse/storage/state.py | |
parent | Bump version and changelog to v0.18.6-rc3 (diff) | |
parent | Fix case (diff) | |
download | synapse-dafd50d178ef36710130ffb830929f4a9ed3710c.tar.xz |
Merge pull request #1767 from matrix-org/matthew/resolve_state_group_logging
log call paths for resolve_state_group
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index 23e7ad9922..7f466c40ac 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -384,7 +384,7 @@ class StateStore(SQLBaseStore): # We did this before by getting the list of group ids, and # then passing that list to sqlite to get latest event for # each (type, state_key). However, that was terribly slow - # without the right indicies (which we can't add until + # without the right indices (which we can't add until # after we finish deduping state, which requires this func) args = [next_group] if types: |