diff options
author | Erik Johnston <erikj@element.io> | 2024-07-24 15:21:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 15:21:56 +0100 |
commit | bdf37ad4c4d66c7a2ca69a29542b01e0856cff48 (patch) | |
tree | c99542243631e7d836b63e999bcc51c577a0e532 /changelog.d | |
parent | Use a new token format for sliding sync (#17452) (diff) | |
download | synapse-bdf37ad4c4d66c7a2ca69a29542b01e0856cff48.tar.xz |
Sliding Sync: ensure bump stamp ignores backfilled events (#17478)
Backfill events have a negative stream ordering, and so its not useful to use to compare with other (positive) stream orderings. Plus, the Rust SDK currently assumes `bump_stamp` is positive.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/17478.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/17478.misc b/changelog.d/17478.misc new file mode 100644 index 0000000000..5406c82742 --- /dev/null +++ b/changelog.d/17478.misc @@ -0,0 +1 @@ +Ensure we don't send down negative `bump_stamp` in experimental sliding sync endpoint. |