diff options
author | Erik Johnston <erik@matrix.org> | 2020-10-14 15:40:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-14 15:40:06 +0100 |
commit | 618d405a322590d022d839b6d72ba51e992a71c3 (patch) | |
tree | 1a48de01d547ef3c491483424e7e3e1b10366e2f /changelog.d | |
parent | Add note to manhole.md about bind_address when using with docker (#8526) (diff) | |
download | synapse-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.bugfix | 1 |
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. |