Skip to content

Commit

Permalink
merge extracted baggage in RabbitMQIntegration
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspimentel committed Oct 30, 2024
1 parent 7e24731 commit 7676362
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ internal static CallTargetState BasicDeliver_OnMethodBegin<TTarget, TBasicProper
{
try
{
extractedContext = SpanContextPropagator.Instance.Extract(basicProperties.Headers, default(ContextPropagation));
extractedContext = SpanContextPropagator.Instance
.Extract(basicProperties.Headers, default(ContextPropagation))
.MergeBaggageInto(Baggage.Current);
}
catch (Exception ex)
{
Expand Down

0 comments on commit 7676362

Please sign in to comment.