fix: Detect clean-session reconnects in Subscription::next_message#81
Merged
KennethKnudsen97 merged 2 commits intoMay 4, 2026
Merged
Conversation
Track clean-session reconnects via `clean_session_count: u8` on `Shared`, bumped in `set_connected` only when `connected == Some(false)`. `Subscription` snapshots the counter at creation; `poll_next` returns `None` if the live counter has advanced — i.e. the broker has dropped our subs since this subscription was created. Replaces the previous `clean_session()` future. That code snapshotted `prev_state` inside a future built fresh on every `poll_next` and acquired the lock *after* `set_connected` released it, so `prev_state` always equalled the post-mutation `shared.connected`. The pattern `(None | Some(true), Some(false))` was structurally unreachable. Transient disconnects and session-resume reconnects do not bump the counter — broker-side and local subscriber state are intact, so the subscription stays valid. Refs FactbirdHQ/rustot#121
Merged
3 tasks
MathiasKoch
approved these changes
May 4, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
clean_session_count: u8onShared, bumped inset_connectedonly whenconnected == Some(false).Subscriptionsnapshots the counter at creation;poll_nextreturnsNoneif the live counter has advanced.clean_session()future, which was structurally unable to observe the transition (see below).Why the old code didn't work
clean_session()snapshottedprev_stateinside a fresh future built on everypoll_next. The future acquired the lock afterset_connectedreleased it, soprev_statealways equalled the post-mutationshared.connected. The pattern(None | Some(true), Some(false))was never reachable — the "before" half of the comparison was dead-on-arrival.Test plan
next_message().await → None, callers resubscribe.Refs FactbirdHQ/rustot#121