diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2023-01-25 13:38:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 13:38:53 +0000 |
commit | a63d4cc9e96c1f5bb9c5bb9fc9119fb137de3b1b (patch) | |
tree | 664de7b53d6e04cc31428f015752fc32ee840192 /changelog.d | |
parent | Document the export user data command. (#14883) (diff) | |
download | synapse-a63d4cc9e96c1f5bb9c5bb9fc9119fb137de3b1b.tar.xz |
Make sqlite database migrations transactional again (#14910)
#13873 introduced a regression which causes sqlite database migrations to no longer run inside a transaction. Wrap them in a transaction again, to avoid database corruption when migrations are interrupted. Fixes #14909. Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/14910.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14910.bugfix b/changelog.d/14910.bugfix new file mode 100644 index 0000000000..f1f34cd6ba --- /dev/null +++ b/changelog.d/14910.bugfix @@ -0,0 +1 @@ +Fix a regression introduced in Synapse 1.69.0 which can result in database corruption when database migrations are interrupted on sqlite. |