Skip to content
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

A47 update: fix spec for data plane authority #420

Merged
merged 2 commits into from
Feb 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions A47-xds-federation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A47: xDS Federation
* Approver: @ejona86, @dfawley
* Status: Implemented
* Implemented in: C++
* Last updated: 2022-01-24
* Last updated: 2022-02-22
markdroth marked this conversation as resolved.
Show resolved Hide resolved
* Discussion at: https://groups.google.com/g/grpc-io/c/17pQyP31yL8

## Abstract
Expand Down Expand Up @@ -102,9 +102,9 @@ an optional authority in the `xds` URI. The procedure for handling an

Note that the authority used for the data plane connections (which is
also used to select the VirtualHost within the xDS RouteConfiguration)
will continue to be the last path component of the `xds` URI used to
create the gRPC channel (i.e., the part following the last `/` character, or
the entire path if the path contains no `/` character).
will continue to be the path component of the `xds` URI used to create the
gRPC channel, stripping off the leading `/` if any. (Any remaining `/`
characters will be percent-encoded, as is normal for gRPC target URIs.)
markdroth marked this conversation as resolved.
Show resolved Hide resolved

### Bootstrap Config Changes

Expand Down