mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-23 18:15:53 +03:00
Fix bug where we sometimes didn't fetch all the keys requested for a
server.
This commit is contained in:
parent
eb700cdc38
commit
ffe8cf7e59
1 changed files with 3 additions and 4 deletions
|
@ -228,10 +228,9 @@ class Keyring(object):
|
|||
def do_iterations():
|
||||
merged_results = {}
|
||||
|
||||
missing_keys = {
|
||||
group.server_name: set(group.key_ids)
|
||||
for group in group_id_to_group.values()
|
||||
}
|
||||
missing_keys = {}
|
||||
for group in group_id_to_group.values():
|
||||
missing_keys.setdefault(group.server_name, set()).union(group.key_ids)
|
||||
|
||||
for fn in key_fetch_fns:
|
||||
results = yield fn(missing_keys.items())
|
||||
|
|
Loading…
Reference in a new issue