summary refs log tree commit diff
path: root/synapse/state/v2.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:15:41 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:15:41 +0000
commit8fbacc7c545b51ca086d14fb571c7acf8a598d30 (patch)
tree71a475742e61146b05d04386ee211def2b6e4a0b /synapse/state/v2.py
parent1.11.0rc1 (diff)
parentReduce auth chains fetched during v2 state res. (#6952) (diff)
downloadsynapse-8fbacc7c545b51ca086d14fb571c7acf8a598d30.tar.xz
Reduce auth chains fetched during v2 state res. (#6952)
* commit '2b37eabca':
  Reduce auth chains fetched during v2 state res. (#6952)
  update changes.md
Diffstat (limited to 'synapse/state/v2.py')
-rw-r--r--synapse/state/v2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state/v2.py b/synapse/state/v2.py

index 531018c6a5..75fe58305a 100644 --- a/synapse/state/v2.py +++ b/synapse/state/v2.py
@@ -248,7 +248,7 @@ def _get_auth_chain_difference(state_sets, event_map, state_res_store): and eid not in common ) - auth_chain = yield state_res_store.get_auth_chain(auth_ids) + auth_chain = yield state_res_store.get_auth_chain(auth_ids, common) auth_ids.update(auth_chain) auth_sets.append(auth_ids)