diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-04-03 18:10:24 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-05-23 11:52:22 +0100 |
commit | b75537beaf841089f9f07c9dbed04a7a420a8b1f (patch) | |
tree | 81ceb1b2de43ed5e3195976337b9445cae9ca4a0 /changelog.d/5237.misc | |
parent | Simplify process_v2_response (#5236) (diff) | |
download | synapse-b75537beaf841089f9f07c9dbed04a7a420a8b1f.tar.xz |
Store key validity time in the storage layer
This is a first step to checking that the key is valid at the required moment. The idea here is that, rather than passing VerifyKey objects in and out of the storage layer, we instead pass FetchKeyResult objects, which simply wrap the VerifyKey and add a valid_until_ts field.
Diffstat (limited to 'changelog.d/5237.misc')
-rw-r--r-- | changelog.d/5237.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/5237.misc b/changelog.d/5237.misc new file mode 100644 index 0000000000..f4fe3b821b --- /dev/null +++ b/changelog.d/5237.misc @@ -0,0 +1 @@ +Store key validity time in the storage layer. |