You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Part of the work required for GA is to validate that the Tracer is safe for concurrent calls. Ideally this issue would be resolved by adding tests to validate this.
The text was updated successfully, but these errors were encountered:
Having reviewed the methods available in the Tracer API and their implementations in the SDK:
start_span: threadsafe
use_span: uses the context api which is threadlocal or contextvars for storage. any calls to the span API are either atomic, or are using a lock where needed ie. end here:
Part of the work required for GA is to validate that the Tracer is safe for concurrent calls. Ideally this issue would be resolved by adding tests to validate this.
The text was updated successfully, but these errors were encountered: