-
Notifications
You must be signed in to change notification settings - Fork 411
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
bump grpc to 1.44.0 #5741
Merged
Merged
bump grpc to 1.44.0 #5741
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
319f609
bump grpc to 1.44.0
lidezhu 4f9b74a
Update kvproto
JaySon-Huang 9c05f0d
Export ABSL_ROOT_DIR
JaySon-Huang 7da5245
format
lidezhu 1a07986
Merge branch 'master' into upgrade-grpc0830
lidezhu 67bfda4
Update kvproto for grpc 1.44
JaySon-Huang e748732
Ignore the cache change in contrib
JaySon-Huang 198b9a5
remove test on deprecated field
lidezhu 3670cd4
Merge branch 'master' into upgrade-grpc0830
lidezhu b7fbf0a
fix unit test build
lidezhu 97f74b8
Merge branch 'master' into upgrade-grpc0830
ti-chi-bot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule grpc
updated
8578 files
Submodule kvproto
updated
27 files
+6 −6 | .github/workflows/cpp-test.yaml | |
+1 −3 | .gitignore | |
+15 −7 | cpp/CMakeLists.txt | |
+2 −0 | cpp/cmake/find_abseil-cpp.cmake | |
+884 −180 | pkg/brpb/brpb.pb.go | |
+52 −49 | pkg/encryptionpb/encryptionpb.pb.go | |
+187 −113 | pkg/import_sstpb/import_sstpb.pb.go | |
+1,767 −0 | pkg/keyspacepb/keyspacepb.pb.go | |
+1,337 −490 | pkg/kvrpcpb/kvrpcpb.pb.go | |
+101 −59 | pkg/metapb/metapb.pb.go | |
+943 −475 | pkg/pdpb/pdpb.pb.go | |
+343 −80 | pkg/raft_serverpb/raft_serverpb.pb.go | |
+2,192 −0 | pkg/recoverdatapb/recoverdatapb.pb.go | |
+178 −139 | pkg/tikvpb/tikvpb.pb.go | |
+36 −0 | proto/brpb.proto | |
+1 −0 | proto/encryptionpb.proto | |
+6 −0 | proto/import_sstpb.proto | |
+56 −0 | proto/keyspacepb.proto | |
+48 −2 | proto/kvrpcpb.proto | |
+1 −0 | proto/metapb.proto | |
+4 −4 | proto/mpp.proto | |
+13 −0 | proto/pdpb.proto | |
+6 −0 | proto/raft_serverpb.proto | |
+66 −0 | proto/recoverdatapb.proto | |
+2 −0 | proto/tikvpb.proto | |
+0 −1 | scripts/docker-run.sh | |
+1 −1 | scripts/generate_go.sh |
Submodule protobuf
updated
1873 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,10 +89,19 @@ def main(): | |
|
||
if args.check_formatted: | ||
diff_res = run_cmd('git diff --name-only') | ||
if diff_res: | ||
files_not_in_contrib = [f for f in diff_res if not f.startswith('contrib')] | ||
files_contrib = [f for f in diff_res if f.startswith('contrib')] | ||
if files_not_in_contrib: | ||
print('') | ||
print('Error: found files NOT formatted') | ||
print(''.join(diff_res)) | ||
print(''.join(files_not_in_contrib)) | ||
exit(-1) | ||
elif files_contrib: | ||
print('') | ||
print('Warn: found contrib changed') | ||
print(''.join(files_contrib)) | ||
print('') | ||
print(''.join(run_cmd('git status'))) | ||
Comment on lines
+99
to
+104
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I workaround it by changing the python script But we do need to update the files cache in CI after getting this PR merged:
|
||
else: | ||
print("Format check passed") | ||
else: | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Removed because
AdminResponse
is a deprecated field and make test build failed.