summary refs log tree commit diff
path: root/changelog.d/8530.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.21.2Patrick Cloke2020-10-151-1/+0
|
* Remove racey assertion in MultiWriterIDGenerator (#8530)Erik Johnston2020-10-151-0/+1
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.