diff options
author | Erik Johnston <erik@matrix.org> | 2022-08-30 12:17:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 12:17:48 +0100 |
commit | 1c26acd815a8609314991e539dd99ceb2b9b1b43 (patch) | |
tree | b884c66bd004a73c47181230a568020a26d2236d /changelog.d | |
parent | Do not wait for background updates to complete do expire URL cache. (#13657) (diff) | |
download | synapse-1c26acd815a8609314991e539dd99ceb2b9b1b43.tar.xz |
Fix bug where we wedge media plugins if clients disconnect early (#13660)
We incorrectly didn't use the returned `Responder` if the client had disconnected, which meant that the resource used by the Responder wasn't correctly released. In particular, this exhausted the thread pools so that *all* requests timed out.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13660.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13660.bugfix b/changelog.d/13660.bugfix new file mode 100644 index 0000000000..43859a4d65 --- /dev/null +++ b/changelog.d/13660.bugfix @@ -0,0 +1 @@ +Fix bug where we wedge media plugins if clients disconnect early. Introduced in v1.22.0. |