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
{{ message }}
This repository has been archived by the owner on May 23, 2023. It is now read-only.
Either one of two (backwards non-compatible) changes would make things easier for implementers:
Have the default Tracer.startSpan implementation call Span.addTags after calling the Span constructor.
Specify that addTags has no effect if passed a falsy value, and have the default Span.addTags implementation perform this check. Then the Span constructor can just call this.addTags(fields && fields.tags).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Either one of two (backwards non-compatible) changes would make things easier for implementers:
Tracer.startSpan
implementation callSpan.addTags
after calling theSpan
constructor.Span.addTags
implementation perform this check. Then theSpan
constructor can just callthis.addTags(fields && fields.tags)
.The text was updated successfully, but these errors were encountered: