forked from mirror/grapevine
changelog entry for remote device key query logging
This commit is contained in:
parent
141c60e4a3
commit
91739899e7
2 changed files with 4 additions and 3 deletions
|
@ -103,7 +103,8 @@ This will be the first release of Grapevine since it was forked from Conduit
|
|||
[!50](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/50),
|
||||
[!52](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/52),
|
||||
[!54](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/54),
|
||||
[!56](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/56))
|
||||
[!56](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/56),
|
||||
[!69](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/69))
|
||||
5. Stop returning unnecessary member counts from `/_matrix/client/{r0,v3}/sync`.
|
||||
([!12](https://gitlab.computer.surgery/matrix/grapevine-fork/-/merge_requests/12))
|
||||
6. **BREAKING:** Allow federation by default.
|
||||
|
|
|
@ -430,6 +430,8 @@ pub(crate) async fn get_keys_helper<F: Fn(&UserId) -> bool>(
|
|||
for (user_id, keys) in vec {
|
||||
device_keys_input_fed.insert(user_id.to_owned(), keys.clone());
|
||||
}
|
||||
// TODO: switch .and_then(|result| result) to .flatten() when stable
|
||||
// <https://github.com/rust-lang/rust/issues/70142>
|
||||
(
|
||||
server,
|
||||
tokio::time::timeout(
|
||||
|
@ -443,8 +445,6 @@ pub(crate) async fn get_keys_helper<F: Fn(&UserId) -> bool>(
|
|||
)
|
||||
.await
|
||||
.map_err(|_e| Error::BadServerResponse("Query took too long"))
|
||||
// TODO: switch to .flatten() when stable
|
||||
// <https://github.com/rust-lang/rust/issues/70142>
|
||||
.and_then(|result| result),
|
||||
)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue