-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIXED] (2.11) Respect consumer's starting seq, even if in the future (…
…#6253) When using a replicated stream a consumer with a starting sequence could be created on a follower that's ever so slightly behind on applies. If the starting sequence is higher than the stream's last sequence we would clamp it down. We should not be clamping it down, and must respect what the user/client gave us. That ensures any messages the user/client gets are always `message.seq>=starting_seq` as well. However, if the consumer is used for mirroring/sourcing then we should still clamp down. Signed-off-by: Maurice van Veen <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters