Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle a race condition where onSubscribe may be emitted downstream after onError #6168

Merged
merged 3 commits into from
Mar 31, 2025

Conversation

jrhee17
Copy link
Contributor

@jrhee17 jrhee17 commented Mar 19, 2025

Motivation:

While debugging #5880 (comment), I found that onSubscribe could be emitted after onError.
This is a clear violation of specifications https://github.com/reactive-streams/reactive-streams-jvm?tab=readme-ov-file#1.7 and https://github.com/reactive-streams/reactive-streams-jvm?tab=readme-ov-file#1.9.

I propose that before aborting, onSubscribe is called if it hasn't been called yet. To prevent onSubscribe being called multiple times, invokedOnSubscribe is used as a guard.

Modifications:

  • Extracted maybeInvokeOnSubscribe and called it also from notifySubscriberOfCloseEvent0

Result:

  • We no longer observe race conditions between onSubscribe and onError when aborting a StreamMessage.

@jrhee17 jrhee17 added the defect label Mar 19, 2025
@jrhee17 jrhee17 added this to the 1.33.0 milestone Mar 19, 2025
@jrhee17 jrhee17 marked this pull request as ready for review March 19, 2025 10:30
Copy link
Contributor

@minwoox minwoox left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice finding. 👍

Copy link
Member

@trustin trustin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@ikhoon ikhoon modified the milestones: 1.33.0, 1.32.4 Mar 31, 2025
@ikhoon ikhoon merged commit faa36fb into line:main Mar 31, 2025
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants