summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-06-04 10:47:58 +0100
committerGitHub <noreply@github.com>2021-06-04 10:47:58 +0100
commita0cd8ae8cbe14d2821cbe8fd6b011c4ddc729344 (patch)
treefb5a989c56673fec29d2e84a4043c02fda7aeeb9 /changelog.d
parentLimit number of events in a replication request (#10118) (diff)
downloadsynapse-a0cd8ae8cbe14d2821cbe8fd6b011c4ddc729344.tar.xz
Don't try and backfill the same room in parallel. (#10116)
If backfilling is slow then the client may time out and retry, causing
Synapse to start a new `/backfill` before the existing backfill has
finished, duplicating work.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/10116.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10116.bugfix b/changelog.d/10116.bugfix
new file mode 100644
index 0000000000..90ef707559
--- /dev/null
+++ b/changelog.d/10116.bugfix
@@ -0,0 +1 @@
+Fix bug where the server would attempt to fetch the same history in the room from a remote server multiple times in parallel.