summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-07-15 18:33:03 +0100
committerGitHub <noreply@github.com>2020-07-15 18:33:03 +0100
commita57df9b82750a10391811a6de974093cd2b53387 (patch)
tree583a045fbd7319846f587bea6e8ef499e87f11e3 /changelog.d
parentMerge branch 'erikj/faster_typing' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-a57df9b82750a10391811a6de974093cd2b53387.tar.xz
Avoid brand new rooms in `delete_old_current_state_events` (#7854)
When considering rooms to clean up in `delete_old_current_state_events`, skip
rooms which we are creating, which otherwise look a bit like rooms we have
left.

Fixes #7834.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/7854.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7854.bugfix b/changelog.d/7854.bugfix
new file mode 100644
index 0000000000..b11f9dedfe
--- /dev/null
+++ b/changelog.d/7854.bugfix
@@ -0,0 +1 @@
+Fix a bug introduced in Synapse 1.10.0 which could cause a "no create event in auth events" error during room creation.