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.
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
api: organize go_proto_libraries #8003
api: organize go_proto_libraries #8003
Changes from 17 commits
f2f64fb
9936e83
0eb97c5
4cfd48c
6595e0a
a7071f6
f05900d
f49146f
bc04c61
88e12fc
6b8cca1
090a9f2
1b5a13a
c03e6d7
4e8cfa2
8e8661c
4387af1
0c54d02
f5c3320
09da24b
33f6585
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Does this mean that
go_proto
andgo_grpc
will not be separate targets anymore? So users no longer have to refer to*_go_grpc
and can always just use*_go_proto
?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.
Yes, it is generally the same go package for proto and gRPC in OSS. Internal rules might still create two different rules if necessary.
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.
When do you have default vs. explicit
name = "v2",
?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.
I started naming them starting from envoy/api/v2/core, and then switched to using the default name. I'm fine making them all to be
pkg
. I thoughtenvoy/api/v2:v2
looked better at first.