Skip to content

Commit

Permalink
Fixed DataDog trace exporter
Browse files Browse the repository at this point in the history
`ddtrace` package introduced some breaking changes that break the
DataDog trace exporter. This commit downgrades the dependency to last
know working version to fix the exporter.
  • Loading branch information
owais committed Apr 3, 2021
1 parent 12da395 commit d9d4e2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'release/*'
pull_request:
env:
CORE_REPO_SHA: f556d1418c8015b71ec2e16b4ba2b76efdd3804f
CORE_REPO_SHA: 7054b534404fc69199e368cbe62a4e7570cc46ea

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python-contrib/compare/v0.19b0...HEAD)

### Changed
- Downgrade DataDog exporter's `ddtrace` dependency so the exporter continues to work.
([#400](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/400))
- GRPC instrumentation now correctly injects trace context into outgoing requests.
([#392](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/39))
- Publish `opentelemetry-propagator-ot-trace` package as a part of the release process
Expand Down
2 changes: 1 addition & 1 deletion exporter/opentelemetry-exporter-datadog/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ package_dir=
=src
packages=find_namespace:
install_requires =
ddtrace>=0.34.0
ddtrace>=0.34.0,<0.47.0
opentelemetry-api == 1.0.0
opentelemetry-sdk == 1.0.0

Expand Down

0 comments on commit d9d4e2d

Please sign in to comment.