-
Notifications
You must be signed in to change notification settings - Fork 837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(otlp-proto-exporter-base): add missing type import #3937
fix(otlp-proto-exporter-base): add missing type import #3937
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #3937 +/- ##
==========================================
+ Coverage 92.90% 92.91% +0.01%
==========================================
Files 297 297
Lines 8838 8838
Branches 1815 1815
==========================================
+ Hits 8211 8212 +1
+ Misses 627 626 -1 |
@@ -16,6 +16,7 @@ All notable changes to experimental packages in this project will be documented | |||
### :bug: (Bug Fix) | |||
|
|||
* fix(exporter-logs-otlp-http): set useHex to true [#3875](https://github.com/open-telemetry/opentelemetry-js/pull/3875) @Nico385412 | |||
fix(otlp-proto-exporter-base): add missing type import [#3937](https://github.com/open-telemetry/opentelemetry-js/pull/3937) @pichlermarc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are missing a *
here.
Which problem is this PR solving?
See #3921, a type import is missing that causes compilation to fail when using any proto exporters.
Fixes #3921
Type of change
How Has This Been Tested?