Update to use the canonical version of LB proto#15840
Conversation
|
|
|
|
|
|
|
1 similar comment
|
|
|
|
| @@ -1,4 +1,4 @@ | |||
| // Copyright 2016 gRPC authors. | |||
| // Copyright 2015 The gRPC Authors | |||
There was a problem hiding this comment.
I'm just curious about why this gets decreased?
There was a problem hiding this comment.
The earlier copyright takes precedence. This file was copied a few times, but the original date holds.
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| // This file defines an the GRPCLB LoadBalancing protocol. |
There was a problem hiding this comment.
Nit: "an" can be removed.
There was a problem hiding this comment.
@carl-mastrangelo can you fix that upstream?
There was a problem hiding this comment.
@AspirinSJL actually has a PR upstream already, perhaps she can attach the change to her existing PR?
There was a problem hiding this comment.
Oh, I thought this only exists in downstream copies. I will attach the change to my PR.
| // length of the name is 256 bytes. | ||
| // The name might include a port number. How to handle the port number is up | ||
| // to the balancer. | ||
| // Name of load balanced service (IE, service.googleapis.com). Its |
There was a problem hiding this comment.
This overwrites my change before. I should probably update the canonical file.
tools/distrib/check_nanopb_output.sh
Outdated
| popd | ||
|
|
||
| ## | ||
| ## Checks for load_balancer.proto |
There was a problem hiding this comment.
Why is this all commented out?
|
|
|
|
grpc/grpc-proto#28 is merged. Please sync. Thanks! |
|
Done. PTAL. |
|
|
|
|
Issues: #15827 |
For now,
load_balance.protois a copy of https://github.com/grpc/grpc-proto/blob/master/grpc/lb/v1/load_balancer.proto . In the future we may want to submodulegrpc/grpc-protoinstead.The approach taken involves compiling
google.protobuf.durationandgoogle.protobuf.timestampusing nanopb, thus generating C code the core can compile and link. Most other changes are to auxiliary scripts used to perform this compilation.Fixes #15728