Skip to content
Merged
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
Next Next commit
fix(instrumentation-http): remove commented out code
  • Loading branch information
cjihrig committed Oct 29, 2025
commit c13359ff46fc0963877ddd6c19031ff57e3a39be
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ For notes on migrating to 2.x / 0.200.x see [the upgrade guide](doc/upgrade-to-2

* test(otlp-grpc-exporter-base): increase timeout in flaky test [#6042](https://github.com/open-telemetry/opentelemetry-js/pull/6042) @cjihrig
* test(sdk-node): use process.env consistently in tests [#xxxx](https://github.com/open-telemetry/opentelemetry-js/pull/xxxx) @cjihrig
* fix(instrumentation-http): remove commented out code [#xxxx](https://github.com/open-telemetry/opentelemetry-js/pull/xxxx) @cjihrig

## 0.207.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ export const getAbsoluteUrl = (
}
// Redact sensitive query parameters
if (path.includes('?')) {
//const [pathname, query] = path.split('?', 2);
const parsedUrl = url.parse(path);
const pathname = parsedUrl.pathname || '';
const query = parsedUrl.query || '';
Expand Down