-
Notifications
You must be signed in to change notification settings - Fork 848
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
Adds Baggage.getEntry(String key) #6765
Conversation
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.
makes sense to me
api/all/src/main/java/io/opentelemetry/api/baggage/Baggage.java
Outdated
Show resolved
Hide resolved
api/all/src/main/java/io/opentelemetry/api/baggage/ImmutableBaggage.java
Outdated
Show resolved
Hide resolved
…ggage.java Co-authored-by: Trask Stalnaker <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6765 +/- ##
============================================
+ Coverage 90.02% 90.09% +0.06%
- Complexity 6488 6544 +56
============================================
Files 719 728 +9
Lines 19587 19702 +115
Branches 1931 1935 +4
============================================
+ Hits 17634 17750 +116
+ Misses 1354 1349 -5
- Partials 599 603 +4 ☔ View full report in Codecov by Sentry. |
Resolves #6729.
This prevents users from having to go through
asMap()
in order to fetch the metadata for a givenBaggageEntry
.