Skip to content

Commit

Permalink
fix: auto-config of baggage propagator (#2425)
Browse files Browse the repository at this point in the history
  • Loading branch information
joekhoobyar authored Sep 10, 2024
1 parent ef5efcb commit e87ff9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metapackages/auto-configuration-propagators/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type PropagatorFactoryFunction = () => TextMapPropagator;

const propagatorMap = new Map<string, PropagatorFactoryFunction>([
['tracecontext', () => new W3CTraceContextPropagator()],
['baggage', () => new W3CTraceContextPropagator()],
['baggage', () => new W3CBaggagePropagator()],
[
'b3',
() => new B3Propagator({ injectEncoding: B3InjectEncoding.SINGLE_HEADER }),
Expand Down

0 comments on commit e87ff9d

Please sign in to comment.