diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-05-27 11:31:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 10:31:08 +0100 |
commit | f1605b7447196d2b13cfbaf70483aa9f2f1a34b4 (patch) | |
tree | 7635cd2004b0e52f00a0ee9d7148dac8da439775 /changelog.d | |
parent | Refactor have_seen_events to reduce OOMs (#12886) (diff) | |
download | synapse-f1605b7447196d2b13cfbaf70483aa9f2f1a34b4.tar.xz |
Fix room deletion (#12889)
* Fix room deletion ae7858f broke room deletion by attempting to delete the entry from `rooms` before the tables that reference it. * faster_joins: remove database rows on purge
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/12889.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12889.bugfix b/changelog.d/12889.bugfix new file mode 100644 index 0000000000..582b2f0642 --- /dev/null +++ b/changelog.d/12889.bugfix @@ -0,0 +1 @@ +Fix a bug introduced in Synapse 1.59.0 which caused room deletion to fail with a foreign key violation. |