Skip to content

Commit 95c5db2

Browse files
chore(deps-dev): bump undici from 5.27.2 to 5.28.1 (#3757)
Co-authored-by: David Luna <[email protected]>
1 parent fd18de2 commit 95c5db2

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

Diff for: package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: test/instrumentation/modules/@elastic/elasticsearch.test.js

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ if (process.env.GITHUB_ACTIONS === 'true' && process.platform === 'win32') {
1111
process.exit(0);
1212
}
1313

14+
// `@elastic/elasticsearch` has `undici` as a dependency so we need to check
15+
// for compatibility
16+
const isUndiciIncompat = require('../../../_is_undici_incompat')();
17+
if (isUndiciIncompat) {
18+
console.log(`# SKIP dependency issue: ${isUndiciIncompat}`);
19+
process.exit();
20+
}
21+
1422
process.env.ELASTIC_APM_TEST = true;
1523
const agent = require('../../../..').start({
1624
serviceName: 'test-elasticsearch',

0 commit comments

Comments
 (0)