Skip to content

Commit

Permalink
chore(deps): bump @elastic/ecs-pino-format (#3681)
Browse files Browse the repository at this point in the history
fix test case failure that was assuming log output with namespaced fields, set min dep to ^1.4.0 because the test now assumes the newer format
  • Loading branch information
trentm authored Oct 18, 2023
1 parent 517174f commit 2892fcf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
},
"homepage": "https://github.com/elastic/apm-agent-nodejs",
"dependencies": {
"@elastic/ecs-pino-format": "^1.2.0",
"@elastic/ecs-pino-format": "^1.4.0",
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/core": "^1.11.0",
"@opentelemetry/sdk-metrics": "^1.12.0",
Expand Down
4 changes: 2 additions & 2 deletions test/context-propagation-only.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ tape.test('contextPropagationOnly', function (suite) {
`log record 1 "${recs[1].message}" is from serviceB`,
);
t.equal(
recs[1].trace.id,
recs[1]['trace.id'],
traceId,
`log record 1 "${recs[1].message}" has trace.id set ${traceId}`,
);
Expand All @@ -186,7 +186,7 @@ tape.test('contextPropagationOnly', function (suite) {
`log record 2 "${recs[1].message}" is from serviceA`,
);
t.equal(
recs[2].trace.id,
recs[2]['trace.id'],
traceId,
`log record 2 "${recs[2].message}" has trace.id set ${traceId}`,
);
Expand Down

0 comments on commit 2892fcf

Please sign in to comment.