forked from MirrorHub/synapse
Replace server_and_json
with verify_requests
This is a precursor to factoring some of this code out.
This commit is contained in:
parent
2d511defd9
commit
fde63b880d
1 changed files with 3 additions and 3 deletions
|
@ -123,8 +123,8 @@ class Keyring(object):
|
|||
verify_requests.append(verify_request)
|
||||
|
||||
server_to_deferred = {
|
||||
server_name: defer.Deferred()
|
||||
for server_name, _ in server_and_json
|
||||
rq.server_name: defer.Deferred()
|
||||
for rq in verify_requests
|
||||
}
|
||||
|
||||
with PreserveLoggingContext():
|
||||
|
@ -132,7 +132,7 @@ class Keyring(object):
|
|||
# We want to wait for any previous lookups to complete before
|
||||
# proceeding.
|
||||
wait_on_deferred = self.wait_for_previous_lookups(
|
||||
[server_name for server_name, _ in server_and_json],
|
||||
[rq.server_name for rq in verify_requests],
|
||||
server_to_deferred,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue