-
Notifications
You must be signed in to change notification settings - Fork 4.5k
fix 'identitiy' typo in error message #6909
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
Conversation
We need to fix the typo here as well xds/internal/xdsclient/xdsresource/listener_resource_type.go |
Should be ready for review now |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #6909 +/- ##
==========================================
+ Coverage 83.73% 83.80% +0.06%
==========================================
Files 287 287
Lines 30829 30829
==========================================
+ Hits 25816 25836 +20
+ Misses 3958 3942 -16
+ Partials 1055 1051 -4
|
@@ -430,7 +430,7 @@ type ClientHeader struct { | |||
MethodName string `protobuf:"bytes,2,opt,name=method_name,json=methodName,proto3" json:"method_name,omitempty"` | |||
// A single process may be used to run multiple virtual | |||
// servers with different identities. | |||
// The authority is the name of such a server identitiy. | |||
// The authority is the name of such a server identity. |
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.
We should not be modifying this pb.go
as this is generated from protos in the grpc-proto repo. And this comment comes from here.
Let us rollback the changes to this file and cut a PR to fix the typo in the proto definition in the gRPC-proto repo. This will fix it the next time we generate.
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.
LGTM. Thanks!
RELEASE NOTES: none