summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorSean Quah <8349537+squahtx@users.noreply.github.com>2021-11-04 10:33:53 +0000
committerGitHub <noreply@github.com>2021-11-04 10:33:53 +0000
commit8eec25a1d9d656905db18a2c62a5552e63db2667 (patch)
tree46f8ad9f72355ea3947cb3bb93811ee708af5245 /changelog.d
parentAdd a linearizer on (appservice, stream) when handling ephemeral events. (#11... (diff)
downloadsynapse-8eec25a1d9d656905db18a2c62a5552e63db2667.tar.xz
Track ongoing event fetches correctly in the presence of failure (#11240)
When an event fetcher aborts due to an exception, `_event_fetch_ongoing`
must be decremented, otherwise the event fetcher would never be
replaced. If enough event fetchers were to fail, no more events would be
fetched and requests would get stuck waiting for events.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/11240.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/11240.bugfix b/changelog.d/11240.bugfix
new file mode 100644
index 0000000000..94d73f67e3
--- /dev/null
+++ b/changelog.d/11240.bugfix
@@ -0,0 +1 @@
+Fix a long-standing bug where all requests that read events from the database could get stuck as a result of losing the database connection.