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
Without this change an NPE was thrown when unboxing the sampling flag. Also the parent id was resolved improperly. Lastly OTel doesn't understand a deferred sampling decision (that's why NPE was thrown, but even after fixing it sampling decision is either positive or negative).
with this change we're fixing the unboxing problem plus we're directly passing the sampling decision and parent id as respones for trace context method execution (for sampling and parent id)
fixesgh-911
The TraceContext interface accepts nullable values on sampled flag.
The problem is if you do not set that value you'll get NPE because of the ternary condition on the .build() method.
The text was updated successfully, but these errors were encountered: