-
Notifications
You must be signed in to change notification settings - Fork 685
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
IsRecording becomes false after End #1243
Labels
good first issue
Good first issue
help wanted
release:required-for-ga
To be resolved before GA release
Comments
robwknox
added a commit
to robwknox/opentelemetry-python
that referenced
this issue
Oct 23, 2020
robwknox
added a commit
to robwknox/opentelemetry-python
that referenced
this issue
Oct 23, 2020
6 tasks
robwknox
added a commit
to robwknox/opentelemetry-python
that referenced
this issue
Oct 26, 2020
robwknox
added a commit
to robwknox/opentelemetry-python
that referenced
this issue
Oct 26, 2020
robwknox
referenced
this issue
Oct 27, 2020
Before this change, the following would cause unintended behaviour in the Span API's add_event, update_name and set_status methods: - thread A calls set_status, locks to check if a span has ended, and releases the lock - thread B obtains the lock and ends a span - thread A continues its call of set_status This change ensures that the update operations are done with the lock being held. It's done in a decorator, but that is completely optional.
robwknox
added a commit
to robwknox/opentelemetry-python
that referenced
this issue
Oct 27, 2020
5 tasks
srikanthccv
pushed a commit
to srikanthccv/opentelemetry-python
that referenced
this issue
Nov 1, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
good first issue
Good first issue
help wanted
release:required-for-ga
To be resolved before GA release
As per the spec change here: open-telemetry/opentelemetry-specification@ec58e45
Note: is_recording should be set after calling on_end in the span processor
The text was updated successfully, but these errors were encountered: