diff options
author | Erik Johnston <erikj@element.io> | 2024-02-09 10:51:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 10:51:11 +0000 |
commit | bfa93d1d3ba880244cbb8e8420832db1563bf6c3 (patch) | |
tree | 83601f94c213ed223c9d5344f2110a3f8c8896e6 /changelog.d | |
parent | 1.101.0rc1 (diff) | |
download | synapse-bfa93d1d3ba880244cbb8e8420832db1563bf6c3.tar.xz |
Only do one concurrent fetch per server in keyring (#16894)
Otherwise if we've stacked a bunch of requests for the keys of a server, we'll end up sending lots of concurrent requests for its keys, needlessly.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/16894.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16894.bugfix b/changelog.d/16894.bugfix new file mode 100644 index 0000000000..7e05370be7 --- /dev/null +++ b/changelog.d/16894.bugfix @@ -0,0 +1 @@ +Do not send multiple concurrent requests for keys for the same server. |