-
Notifications
You must be signed in to change notification settings - Fork 15
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
Preparatory refactor for making EmbraceImpl an interface #1060
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1060 +/- ##
==========================================
- Coverage 79.65% 79.64% -0.01%
==========================================
Files 417 417
Lines 10788 10788
Branches 1770 1770
==========================================
- Hits 8593 8592 -1
- Misses 1407 1408 +1
Partials 788 788
|
@@ -15,7 +15,7 @@ public interface NetworkRequestApi { | |||
*/ | |||
public fun recordNetworkRequest(networkRequest: EmbraceNetworkRequest) | |||
|
|||
public fun getTraceIdHeader(): String | |||
public val traceIdHeader: String |
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.
Given that we have NSF as well as OTel stuff to consider, this naming is pretty problematic.
We shouldn't change it in this PR, but we should probably change this when we bump our SDK version to 7.0
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.
LGTM
d19d361
to
98c866f
Compare
c1051b3
to
592e140
Compare
592e140
to
2b2b448
Compare
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Manifest Files |
Goal
Preparatory refactor that will make it easier to create an interface out of
EmbraceImpl
, which will make modularisation possible.