-
Notifications
You must be signed in to change notification settings - Fork 4.5k
resolver: State: add Endpoints and deprecate Addresses #6471
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -164,6 +164,10 @@ var ( | |||
|
||||
// ORCAAllowAnyMinReportingInterval is for examples/orca use ONLY. | ||||
ORCAAllowAnyMinReportingInterval interface{} // func(so *orca.ServiceOptions) | ||||
|
||||
// GRPCResolverSchemeExtraMetadata determines when gRPC will add extra | ||||
// metadata to RPCs. | ||||
GRPCResolverSchemeExtraMetadata string = "xds" | ||||
Comment on lines
+168
to
+170
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. Is this supposed to be only for the Also, could you help me figure out how this is used. The code in 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. Are we supporting This is read here when doing metadata matching for routes:
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.
Hmm ... A47 section on target-uri syntax says we will continue to support the Do you think we should improve the language in this gRFC section or is it clear to you? 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. It's not super air-tight, but by not saying "we're supporting
|
||||
) | ||||
|
||||
// HealthChecker defines the signature of the client-side LB channel health checking function. | ||||
|
Uh oh!
There was an error while loading. Please reload this page.