-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fixed race condition in OnEnd and added a unit test #3951
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR 👍
Can you also update the CHANGELOG.md
?
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #3951 +/- ##
=====================================
Coverage 82.1% 82.1%
=====================================
Files 175 175
Lines 12977 12977
=====================================
Hits 10655 10655
Misses 2102 2102
Partials 220 220
|
Hey @pellared , I have made all the changes as per your comments and also updated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution 👍
Co-authored-by: Robert Pająk <pellared@hotmail.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Hey @MrAlias, incorporated your suggestions. Could you please have a look? |
) * Fixed race condition in OnEnd and added a test * fixed code review comments * fixed lint * Update CHANGELOG.md Co-authored-by: Robert Pająk <pellared@hotmail.com> * Update sdk/trace/simple_span_processor_test.go Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> * Update sdk/trace/simple_span_processor_test.go Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> * Update sdk/trace/simple_span_processor_test.go Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> * fixed panic check --------- Co-authored-by: Robert Pająk <pellared@hotmail.com> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Fixes: #3948
Fixed race condition in
OnEnd
and added a unit test.