You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
storage/state.py's _get_state_for_groups claims that if you pass in a types list with an entry with a state_key of None, the None will match all state_keys of the given type:
storage/state.py's _get_state_for_groups claims that if you pass in a
typeslist with an entry with a state_key of None, the None will match all state_keys of the given type:synapse/synapse/storage/state.py
Lines 505 to 509 in 106906a
This looks to be correct when we're querying the cache, thanks to:
synapse/synapse/storage/state.py
Lines 461 to 462 in 106906a
However, it doesn't look like it's correct when we're querying the DB - where the None looks like it's turned into an
AND state_key = NULLor similar?synapse/synapse/storage/state.py
Lines 239 to 244 in 106906a