diff options
author | Erik Johnston <erik@matrix.org> | 2021-06-04 10:47:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-04 10:47:58 +0100 |
commit | a0cd8ae8cbe14d2821cbe8fd6b011c4ddc729344 (patch) | |
tree | fb5a989c56673fec29d2e84a4043c02fda7aeeb9 /changelog.d | |
parent | Limit number of events in a replication request (#10118) (diff) | |
download | synapse-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.bugfix | 1 |
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. |