Skip to content

Commit

Permalink
feat(transport): de-experiment google-c2p resolver (#1757)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanli-ml committed Nov 23, 2022
1 parent c213153 commit 8d8f0a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions transport/grpc/dial.go
Expand Up @@ -179,9 +179,9 @@ func dial(ctx context.Context, insecure bool, o *internal.DialSettings) (*grpc.C
if strings.EqualFold(os.Getenv(enableDirectPathXds), "true") {
// google-c2p resolver target must not have a port number
if addr, _, err := net.SplitHostPort(endpoint); err == nil {
endpoint = "google-c2p-experimental:///" + addr
endpoint = "google-c2p:///" + addr
} else {
endpoint = "google-c2p-experimental:///" + endpoint
endpoint = "google-c2p:///" + endpoint
}
} else {
if !strings.HasPrefix(endpoint, "dns:///") {
Expand Down

0 comments on commit 8d8f0a7

Please sign in to comment.