-
Notifications
You must be signed in to change notification settings - Fork 433
feat(pubsub): add MakeConnection overloads to support regional and locational endpoints #15190
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
feat(pubsub): add MakeConnection overloads to support regional and locational endpoints #15190
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #15190 +/- ##
==========================================
+ Coverage 92.92% 92.94% +0.01%
==========================================
Files 2392 2393 +1
Lines 215134 215286 +152
==========================================
+ Hits 199905 200088 +183
+ Misses 15229 15198 -31 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| std::move(opts), "", "PUBSUB_EMULATOR_HOST", "", "pubsub.googleapis.com"); | ||
| std::move(opts), "", "PUBSUB_EMULATOR_HOST", "", | ||
| // optional location tag for generating docs | ||
| absl::StrCat(location, location.empty() ? "" : "-", |
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.
Needs to add #include "google/cloud/internal/absl_str_cat_quiet.h"
fixes #15161
This change is