summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-10-14 15:40:06 +0100
committerGitHub <noreply@github.com>2020-10-14 15:40:06 +0100
commit618d405a322590d022d839b6d72ba51e992a71c3 (patch)
tree1a48de01d547ef3c491483424e7e3e1b10366e2f /changelog.d
parentAdd note to manhole.md about bind_address when using with docker (#8526) (diff)
downloadsynapse-618d405a322590d022d839b6d72ba51e992a71c3.tar.xz
Remove racey assertion in MultiWriterIDGenerator (#8530)
We asserted that the IDs returned by postgres sequence was greater than
any we had seen, however this is technically racey as we may update the
current positions out of order.

We now assert that the sequences are correct on startup, so the
assertion is no longer really required, so we remove them.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8530.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8530.bugfix b/changelog.d/8530.bugfix
new file mode 100644
index 0000000000..443d88424e
--- /dev/null
+++ b/changelog.d/8530.bugfix
@@ -0,0 +1 @@
+Fix rare bug where sending an event would fail due to a racey assertion.