Fix concurrent subscriptions to share without replay#2719
Open
thliu21 wants to merge 1 commit into
Open
Conversation
thliu21
marked this pull request as ready for review
July 22, 2026 17:48
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
share(replay: 0, scope: .whileConnected)Root cause and impact
The optimized no-replay sharing path released its recursive lock before inserting the observer. Concurrent first subscribers could therefore both observe an empty observer bag and both call
connect()on the same connection. The second call assigned the connection'sSingleAssignmentDisposableagain and crashed withFatal error: oldState.disposable != nil.This change inserts the observer before releasing the lock, keeping the observer count and insertion in one critical section. Connecting to the source still happens after unlocking, so source subscription and user code remain outside the lock and the previous replay deadlock is not reintroduced.
Validation
test2718ShareWithoutReplayConnectsOnceForConcurrentFirstSubscriptionsmacOS testAnomaliesTestandObservableShareReplayScopeTestsmacOS suites (18 tests), including the four existingtake(1)+share(replay: 1)+zip= deadlock #2653 deadlock regressionsswift build --product RxSwift./scripts/package-spm.swiftgit diff --checkFixes #2718