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
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
* test(opentelemetry-configuration): simplify management of environment variables [#6004](https://github.com/open-telemetry/opentelemetry-js/pull/6004) @cjihrig
* test(opentelemetry-configuration): preserve special process.env behavior [#6010](https://github.com/open-telemetry/opentelemetry-js/pull/6010) @cjihrig
* test(sdk-logs): ensure process.env is cleaned up between tests [#6017](https://github.com/open-telemetry/opentelemetry-js/pull/6017) @cjihrig
* test(otlp-grpc-exporter-base): remove duplicated delete statements [#xxxx](https://github.com/open-telemetry/opentelemetry-js/pull/xxxx) @cjihrig
Comment thread
cjihrig marked this conversation as resolved.
Outdated

## 0.206.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,6 @@ describe('getOtlpGrpcConfigurationFromEnvironment', function () {
delete process.env.OTEL_EXPORTER_OTLP_METRICS_ENDPOINT;
delete process.env.OTEL_EXPORTER_OTLP_INSECURE;
delete process.env.OTEL_EXPORTER_OTLP_METRICS_INSECURE;
delete process.env.OTEL_EXPORTER_OTLP_INSECURE;
delete process.env.OTEL_EXPORTER_OTLP_METRICS_INSECURE;
delete process.env.OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE;
delete process.env.OTEL_EXPORTER_OTLP_METRICS_CLIENT_CERTIFICATE;
delete process.env.OTEL_EXPORTER_OTLP_CLIENT_KEY;
Expand Down