-
Notifications
You must be signed in to change notification settings - Fork 377
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
docs(quickstart): Replace deprecated RPC in the sample code #14545
docs(quickstart): Replace deprecated RPC in the sample code #14545
Conversation
🤖 I detect that the PR title and the commit message differ and there's only one commit. To use the PR title for the commit history, you can use Github's automerge feature with squashing, or use -- conventional-commit-lint bot |
5b0d8f8
to
e3a79e3
Compare
google/cloud/edgenetwork/README.md
Outdated
if (argc != 4) { | ||
std::cerr << "Usage: " << argv[0] << " project-id location-id\n"; |
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.
There is now a mismatch between the requirement and the error message.
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.
Thanks! Fixed.
if (argc != 4) { | ||
std::cerr << "Usage: " << argv[0] << " project-id location-id\n"; |
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.
Ditto.
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.
Fixed.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #14545 +/- ##
=======================================
Coverage 93.59% 93.59%
=======================================
Files 2316 2316
Lines 206915 206915
=======================================
+ Hits 193660 193661 +1
+ Misses 13255 13254 -1 ☔ View full report in Codecov by Sentry. |
cd86258
to
c9c2bb1
Compare
c9c2bb1
to
f98a30a
Compare
…is#14545) * docs(quickstart): Replace deprecated RPC in the sample code * fix format * change error message
Replace the deprecated RPC
ListZones
withListNetworks
in the quickstart sample code. The deprecation information is ingoogle/cloud/edgenetwork/v1/service.proto
.We don't have a zone in the our test project's test location, so a NOT_FOUND error is expected in the test.
This change is