-
Notifications
You must be signed in to change notification settings - Fork 29
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
Data Race: concurrent access of error state during duplexHTTPCall #171
Comments
akshayjshah
pushed a commit
that referenced
this issue
Jun 24, 2024
Fix a data race for a streaming client on close when a the context is cancelled. This was introduced in #152 where we changed the behaviour to trigger a close on context cancellation. The state must be locked to avoid a data race with Send/Receive calls. Closes #170, #171. --------- Signed-off-by: Edward McFarlane <[email protected]>
Resolved in #173, included in release v0.7.1. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm having difficulty determining the provenance of this particular race, but adjacent to the
closeSpan
call alongside a send func (similar to #170):The text was updated successfully, but these errors were encountered: