-
Notifications
You must be signed in to change notification settings - Fork 128
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: uses old version of gax-grpc method #426
fix: uses old version of gax-grpc method #426
Conversation
Codecov Report
@@ Coverage Diff @@
## master #426 +/- ##
============================================
- Coverage 82.16% 82.14% -0.03%
- Complexity 2455 2459 +4
============================================
Files 136 136
Lines 13589 13589
Branches 1307 1307
============================================
- Hits 11166 11163 -3
- Misses 1895 1897 +2
- Partials 528 529 +1
Continue to review full report at Codecov.
|
// Before updating this method to setExecutor, please make sure to verify the version | ||
// of gax-grpc used internally. At the moment we are using 1.47.1, which does not | ||
// support the setExecutor variant. |
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 comment may not give enough context for folks outside of Google. So instead reword to something like:
"Before updating this method to setExecutor, please verify with a code owner on the lowest version of gax-grpc that needs to be supported. Currently v1.47.17, which doesn't support the setExecutor variant."
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.
Done.
Internally, we are using version 1.47.1 of the gax-grpc library, which does not provide a method currently being used (setExecutor). In here we use a method that is available in 1.47.1 and achieves the same goal (setExecutorProvider).
94fd5bb
to
4ed38fe
Compare
This is an auto-generated regeneration of the .pb.go files by cloud.google.com/go/internal/gapicgen. Once this PR is submitted, genbot will update the corresponding PR to depend on the newer version of go-genproto, and assign reviewers. Whilst this or any regen PR is open in go-genproto, genbot will not create any more regeneration PRs. If all regen PRs are closed, gapicgen will create a new set of regeneration PRs once per night. If you have been assigned to review this PR, please: - Ensure that CI is passing. If it's failing, it requires your manual attention. - Approve and submit this PR if you believe it's ready to ship. That will prompt genbot to assign reviewers to the google-cloud-go PR. Corresponding google-cloud-go PR: googleapis/google-cloud-go#2706
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Internally, we are using version 1.47.1 of the gax-grpc library, which does not provide a method currently being used (setExecutor).
In here we use a method that is available in 1.47.1 and achieves the same goal (setExecutorProvider).