Skip to content

Commit 2146357

Browse files
bypass name resolution (#477)
Signed-off-by: Kartikay <[email protected]>
1 parent 1467df1 commit 2146357

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

internal/client/client.go

+17
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"net/url"
88
"os"
99
"path/filepath"
10+
"strings"
1011

1112
"golang.org/x/net/proxy"
1213

@@ -50,6 +51,10 @@ func newClientForCurrentContext(cmd *cobra.Command) (Client, error) {
5051
return nil, err
5152
}
5253

54+
if cobrautil.MustGetString(cmd, "proxy") != "" {
55+
token.Endpoint = withPassthroughTarget(token.Endpoint)
56+
}
57+
5358
client, err := authzed.NewClientWithExperimentalAPIs(token.Endpoint, dialOpts...)
5459
if err != nil {
5560
return nil, err
@@ -74,6 +79,10 @@ func newClientForContext(cmd *cobra.Command, contextName string, secretStore sto
7479
return nil, err
7580
}
7681

82+
if cobrautil.MustGetString(cmd, "proxy") != "" {
83+
token.Endpoint = withPassthroughTarget(token.Endpoint)
84+
}
85+
7786
return authzed.NewClient(token.Endpoint, dialOpts...)
7887
}
7988

@@ -242,3 +251,11 @@ func DialOptsFromFlags(cmd *cobra.Command, token storage.Token) ([]grpc.DialOpti
242251

243252
return opts, nil
244253
}
254+
255+
func withPassthroughTarget(endpoint string) string {
256+
// If it already has a scheme, return as-is
257+
if strings.Contains(endpoint, "://") {
258+
return endpoint
259+
}
260+
return "passthrough:///" + endpoint
261+
}

0 commit comments

Comments
 (0)