Skip to content

Commit e87ff9d

Browse files
authored
fix: auto-config of baggage propagator (#2425)
1 parent ef5efcb commit e87ff9d

File tree

1 file changed

+1
-1
lines changed
  • metapackages/auto-configuration-propagators/src

1 file changed

+1
-1
lines changed

metapackages/auto-configuration-propagators/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type PropagatorFactoryFunction = () => TextMapPropagator;
3030

3131
const propagatorMap = new Map<string, PropagatorFactoryFunction>([
3232
['tracecontext', () => new W3CTraceContextPropagator()],
33-
['baggage', () => new W3CTraceContextPropagator()],
33+
['baggage', () => new W3CBaggagePropagator()],
3434
[
3535
'b3',
3636
() => new B3Propagator({ injectEncoding: B3InjectEncoding.SINGLE_HEADER }),

0 commit comments

Comments
 (0)