summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erikj@matrix.org>2023-10-23 14:39:25 +0100
committerGitHub <noreply@github.com>2023-10-23 13:39:25 +0000
commit3bc23cc45cb6a70d53ba4032a9116029bc4f538c (patch)
treead097de2bca816d15921013fb7490390acf34ffe /changelog.d
parentMention how to redirect the Jaeger traces to a specific Jaeger instance (#16531) (diff)
downloadsynapse-3bc23cc45cb6a70d53ba4032a9116029bc4f538c.tar.xz
Fix bug that could cause a `/sync` to tightloop with sqlite after restart (#16540)
This could happen if the last rows in the account data stream were inserted into `account_data`. After a restart the max account ID would be calculated without looking at the `account_data` table, and so have an old ID.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/16540.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16540.bugfix b/changelog.d/16540.bugfix
new file mode 100644
index 0000000000..34ee9facf9
--- /dev/null
+++ b/changelog.d/16540.bugfix
@@ -0,0 +1 @@
+Fix long-standing bug where `/sync` could tightloop after restart when using SQLite.