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

Fix streaming Reader race condition #55

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

douglaswth
Copy link
Member

  • There was a race condition between creating a streaming.Reader with NewReader and calling its Subscribe where events could be consumed before there is any channel to send them to.
  • To fix this, the default behavior is now to only start the reader's read goroutine when Subscribe is called after it has inserted a channel that will receive events.
  • Alternatively, there is now an option WithReaderStartExplicitly which will only start the read goroutine when the new Start is called allowing multiple calls to Subscribe before receiving events.

- There was a race condition between creating a `streaming.Reader` with
  `NewReader` and calling its `Subscribe` where events could be consumed
  before there is any channel to send them to.
- To fix this, the default behavior is now to only start the reader's
  `read` goroutine when `Subscribe` is called after it has inserted a
  channel that will receive events.
- Alternatively, there is now an option `WithReaderStartExplicitly`
  which will only start the `read` goroutine when the new `Start` is
  called allowing multiple calls to `Subscribe` before receiving events.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant