-
Notifications
You must be signed in to change notification settings - Fork 385
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(storage): tracing should decorate retries #12314
fix(storage): tracing should decorate retries #12314
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #12314 +/- ##
=======================================
Coverage 93.54% 93.54%
=======================================
Files 2017 2017
Lines 178384 178411 +27
=======================================
+ Hits 166866 166896 +30
+ Misses 11518 11515 -3
☔ View full report in Codecov by Sentry. |
google/cloud/storage/client_test.cc
Outdated
.set<UnifiedCredentialsOption>(MakeInsecureCredentials()) | ||
.set<internal::UseRestClientOption>(true) | ||
.set<TracingComponentsOption>({"raw-client"}); | ||
#ifdef GOOGLE_CLOUD_CPP_HAVE_OPENTELEMETRY |
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.
This can be unconditional, no?
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.
Sadly not at the moment, the option is inside a #ifdef
block. Created #12316
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 know, I carefully went off and read the header before making the comment, and still missed the conditionals. Sigh.
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.
I disabled auto merge.
If you think I am nitting, then just ignore me.
2c77f95
to
aa28782
Compare
Part of the work for #12294
This change is