Fix bug where we sometimes didn't fetch all the keys requested for a

server.
pull/282/head
Erik Johnston 2015-09-11 11:51:25 +01:00
parent eb700cdc38
commit ffe8cf7e59
1 changed files with 3 additions and 4 deletions

View File

@ -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())