summary refs log tree commit diff
path: root/changelog.d/16473.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.96.0rc1Erik Johnston2023-10-311-1/+0
|
* Revert "1.96.0rc1"Erik Johnston2023-10-311-0/+1
| | | | This reverts commit 4724a6ded136c727bcff5082b94c2b3d6355e908.
* 1.96.0rc1Erik Johnston2023-10-311-1/+0
|
* Fix bug where a new writer advances their token too quickly (#16473)Erik Johnston2023-10-231-0/+1
* Fix bug where a new writer advances their token too quickly When starting a new writer (for e.g. persisting events), the `MultiWriterIdGenerator` doesn't have a minimum token for it as there are no rows matching that new writer in the DB. This results in the the first stream ID it acquired being announced as persisted *before* it actually finishes persisting, if another writer gets and persists a subsequent stream ID. This is due to the logic of setting the minimum persisted position to the minimum known position of across all writers, and the new writer starts off not being considered. * Fix sending out POSITIONs when our token advances without update Broke in #14820 * For replication HTTP requests, only wait for minimal position