Skip to content

Commit 22b069b

Browse files
alrexowais
alrex
andauthored
default value is invalid, was renamed (#755)
* default value is invalid, was renamed * Update CHANGELOG.md Co-authored-by: Owais Lone <[email protected]>
1 parent f13b339 commit 22b069b

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.6.1-0.25b1...HEAD)
9+
10+
### Changed
11+
912
- `opentelemetry-sdk-extension-aws` & `opentelemetry-propagator-aws` Release AWS Python SDK Extension as 2.0.1 and AWS Propagator as 1.0.1
1013
([#753](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/753))
1114

15+
### Fixed
16+
17+
- `opentelemetry-distro` uses the correct entrypoint name which was updated in the core release of 1.6.0 but the distro was not updated with it
18+
([#755](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/755))
19+
1220
## [1.6.1-0.25b1](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.6.1-0.25b1) - 2021-10-18
1321

1422
### Changed
1523
- `opentelemetry-util-http` no longer contains an instrumentation entrypoint and will not be loaded
16-
automatically by the auto instrumentor.
17-
([#745](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/745))
24+
automatically by the auto instrumentor.
25+
([#745](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/745))
1826
- `opentelemetry-instrumentation-pika` Bugfix use properties.headers. It will prevent the header injection from raising.
1927
([#740](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/740))
2028
- `opentelemetry-instrumentation-botocore` Add extension for DynamoDB

opentelemetry-distro/src/opentelemetry/distro/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ class OpenTelemetryDistro(BaseDistro):
3131

3232
# pylint: disable=no-self-use
3333
def _configure(self, **kwargs):
34-
os.environ.setdefault(OTEL_TRACES_EXPORTER, "otlp_proto_grpc_span")
34+
os.environ.setdefault(OTEL_TRACES_EXPORTER, "otlp_proto_grpc")

opentelemetry-distro/tests/test_distro.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ def test_default_configuration(self):
3434
self.assertIsNone(os.environ.get(OTEL_TRACES_EXPORTER))
3535
distro.configure()
3636
self.assertEqual(
37-
"otlp_proto_grpc_span", os.environ.get(OTEL_TRACES_EXPORTER)
37+
"otlp_proto_grpc", os.environ.get(OTEL_TRACES_EXPORTER)
3838
)

opentelemetry-instrumentation/README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ Well known trace exporter names:
7272
- jaeger_thrift
7373
- opencensus
7474
- otlp
75-
- otlp_proto_grpc_span
76-
- otlp_proto_http_span
75+
- otlp_proto_grpc
76+
- otlp_proto_http
7777
- zipkin_json
7878
- zipkin_proto
7979

80-
``otlp`` is an alias for ``otlp_proto_grpc_span``.
80+
``otlp`` is an alias for ``otlp_proto_grpc``.
8181

8282
* ``--id-generator`` or ``OTEL_PYTHON_ID_GENERATOR``
8383

0 commit comments

Comments
 (0)