summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2019-06-25 14:19:21 +0100
committerGitHub <noreply@github.com>2019-06-25 14:19:21 +0100
commitef8c62758cb682205c538215a0c04f008f9c967a (patch)
treeca5b03e6cc87264b4c1b38515099d75245343fe0 /changelog.d
parentMerge branch 'develop' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-ef8c62758cb682205c538215a0c04f008f9c967a.tar.xz
Prevent multiple upgrades on the same room at once (#5051)
Closes #4583

Does slightly less than #5045, which prevented a room from being upgraded multiple times, one after another. This PR still allows that, but just prevents two from happening at the same time.

Mostly just to mitigate the fact that servers are slow and it can take a moment for the room upgrade to actually complete. We don't want people sending another request to upgrade the room when really they just thought the first didn't go through.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/5051.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/5051.bugfix b/changelog.d/5051.bugfix
new file mode 100644
index 0000000000..bfa22cc759
--- /dev/null
+++ b/changelog.d/5051.bugfix
@@ -0,0 +1 @@
+Prevent >1 room upgrades happening simultaneously on the same room.