| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
|
Sorry, something went wrong.
Codecov ReportAttention: Patch coverage is 48.00000% with 13 lines in your changes missing coverage. Please review.
@@ Coverage Diff @@
## main #6952 +/- ##
============================================
- Coverage 90.09% 90.06% -0.03%
- Complexity 6601 6603 +2
============================================
Files 730 730
Lines 19843 19864 +21
Branches 1955 1958 +3
============================================
+ Hits 17877 17890 +13
- Misses 1371 1379 +8
Partials 595 595 ☔ View full report in Codecov by Sentry. |
Sorry, something went wrong.
|
I was trying to figure out why the build-graal check is failing. It's complaining about changing a static variable in io.opentelemetry.exporter.internal.auth.Authenticator. Which is WAI. Is the test flaky? EDIT: fixed by adding the following to resources/META-INF/native-image/io.opentelemetry.opentelemetry-exporter-common/reflect-config.json {
"name":"io.opentelemetry.exporter.internal.auth.Authenticator",
"queryAllDeclaredMethods":true
}
|
Sorry, something went wrong.
|
As discussed in #6975, the Authenticator was conceptually flawed and was removed in #6984. Users should instead use setHeaders(Supplier<Map<String, String>>) for dynamic header based authentication requirements, as demonstrated in this docs PR. Update: Docs PR merged and available here |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Adding missing gRPC authentication features to the experimental Authenticator api. Closes #6953