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
feat: support RPC priority #676
Conversation
Warning: This pull request is touching the following templated files:
|
@thiagotnunes The implementation of this feature should be synchronized with #576 (Tagging), as they both set |
Codecov Report
@@ Coverage Diff @@
## master #676 +/- ##
============================================
+ Coverage 85.10% 85.17% +0.06%
- Complexity 2623 2633 +10
============================================
Files 155 154 -1
Lines 14374 14363 -11
Branches 1340 1342 +2
============================================
Hits 12233 12233
+ Misses 1573 1565 -8
+ Partials 568 565 -3 Continue to review full report at Codecov.
|
google-cloud-spanner/src/main/java/com/google/cloud/spanner/Options.java
Show resolved
Hide resolved
@@ -406,4 +406,51 @@ | |||
<className>com/google/cloud/spanner/AbstractLazyInitializer</className> | |||
<method>java.lang.Object initialize()</method> | |||
</difference> | |||
|
|||
<!-- RPC Priority --> | |||
<difference> |
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 change will break customers and requires a major version bump. This is not optional.
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 is no longer a breaking change, as the breaking changes that were needed for this and other changes were grouped into a separate change to avoid having to bump the version multiple times. That change added Options... options
varargs to the methods that need to support a variety of query / update / transaction options.
Warning: This pull request is touching the following templated files:
|
@elharo Would you mind taking another look at this PR? As your review requested changes, this PR is currently blocked from merging. (FYI: The samples build error is unrelated to this change) |
Adds support for setting RPC priority.