Skip to content
Snippets Groups Projects
Commit 74874ffd authored by Mark Haines's avatar Mark Haines
Browse files

Update the query format used by keyring to match current key v2 spec

parent 46d200a3
No related branches found
No related tags found
No related merge requests found
...@@ -171,10 +171,21 @@ class Keyring(object): ...@@ -171,10 +171,21 @@ class Keyring(object):
) )
with limiter: with limiter:
# TODO(mark): Set the minimum_valid_until_ts to that needed by
# the events being validated or the current time if validating
# an incoming request.
responses = yield self.client.post_json( responses = yield self.client.post_json(
destination=perspective_name, destination=perspective_name,
path=b"/_matrix/key/v2/query", path=b"/_matrix/key/v2/query",
data={u"server_keys": {server_name: list(key_ids)}}, data={
u"server_keys": {
server_name: {
key_id: {
u"minimum_valid_until_ts": 0
} for key_id in key_ids
}
}
},
) )
keys = {} keys = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment