googleapis / java-spanner Public
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
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).