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
MutableSpan.clone isn't implemented. It was originally here for folks to transfer a mutable span to another thread when they weren't the end of the line of SpanHandlers.
As no one noticed, it probably doesn't matter, but raising just in case someone cars.
workaround:
You can return false on SpanHandler.end after transferring your span to another thread meanwhile. Returning false will prevent a later handler from working on the same object, and has no harm in typical case where there is only one handler (span reporter) or that is at the end anyway.
The text was updated successfully, but these errors were encountered:
MutableSpan.clone
isn't implemented. It was originally here for folks to transfer a mutable span to another thread when they weren't the end of the line ofSpanHandler
s.As no one noticed, it probably doesn't matter, but raising just in case someone cars.
workaround:
You can return false on
SpanHandler.end
after transferring your span to another thread meanwhile. Returning false will prevent a later handler from working on the same object, and has no harm in typical case where there is only one handler (span reporter) or that is at the end anyway.The text was updated successfully, but these errors were encountered: