Skip to content

Commit 5b788a2

Browse files
authored
Merge branch 'main' into main
2 parents 5d0c474 + 7448d37 commit 5b788a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 }),

plugins/node/opentelemetry-instrumentation-express/test/fixtures/use-express-regex.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.get(['/test/array1', /\/test\/array[2-9]/], (_req, res) => {
6161
res.send({ response: 'response 3' });
6262
});
6363

64-
app.get(['/test', 6, /test/], (_req, res) => {
64+
app.get(['/test', '6', /test/], (_req, res) => {
6565
res.send({ response: 'response 4' });
6666
});
6767

0 commit comments

Comments
 (0)