Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ For notes on migrating to 2.x / 0.200.x see [the upgrade guide](doc/upgrade-to-2
* refactor(opentelemetry-sdk-node): simplify calculation of traceExportersList [#6132](https://github.com/open-telemetry/opentelemetry-js/pull/6132) @cjihrig
* refactor(instrumentation): combine filter() calls in \_onRequire [#6142](https://github.com/open-telemetry/opentelemetry-js/pull/6142) @cjihrig
* test(instrumentation-http): make timing dependent test more robust [#6144](https://github.com/open-telemetry/opentelemetry-js/pull/6144) @cjihrig
* test(instrumentation-http): replace uses of deprecated abort() [#xxxx](https://github.com/open-telemetry/opentelemetry-js/pull/xxxx) @cjihrig

## 0.208.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ describe('HttpInstrumentation', () => {
}
);
req.setTimeout(10, () => {
req.abort();
req.destroy();
});
// Instrumentation should not swallow error event.
assert.strictEqual(req.listeners('error').length, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ describe('HttpsInstrumentation', () => {
}
);
req.setTimeout(10, () => {
req.abort();
req.destroy();
});
// Instrumentation should not swallow error event.
assert.strictEqual(req.listeners('error').length, 0);
Expand Down