Skip to content

Commit ddb2484

Browse files
authored
xds: remove obsolete xDS transport custom dialer option (#8079)
1 parent 8528f43 commit ddb2484

File tree

2 files changed

+0
-165
lines changed

2 files changed

+0
-165
lines changed

internal/xds/bootstrap/bootstrap.go

-11
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ package bootstrap
2222

2323
import (
2424
"bytes"
25-
"context"
2625
"encoding/json"
2726
"fmt"
2827
"maps"
29-
"net"
3028
"net/url"
3129
"os"
3230
"slices"
@@ -281,13 +279,6 @@ func (sc *ServerConfig) MarshalJSON() ([]byte, error) {
281279
return json.Marshal(server)
282280
}
283281

284-
// dialer captures the Dialer method specified via the credentials bundle.
285-
// Deprecated: use extradDialOptions. Will take precedence over this.
286-
type dialer interface {
287-
// Dialer specifies how to dial the xDS server.
288-
Dialer(context.Context, string) (net.Conn, error)
289-
}
290-
291282
// extraDialOptions captures custom dial options specified via
292283
// credentials.Bundle.
293284
type extraDialOptions interface {
@@ -319,8 +310,6 @@ func (sc *ServerConfig) UnmarshalJSON(data []byte) error {
319310
sc.credsDialOption = grpc.WithCredentialsBundle(bundle)
320311
if d, ok := bundle.(extraDialOptions); ok {
321312
sc.extraDialOptions = d.DialOptions()
322-
} else if d, ok := bundle.(dialer); ok {
323-
sc.extraDialOptions = []grpc.DialOption{grpc.WithContextDialer(d.Dialer)}
324313
}
325314
sc.cleanups = append(sc.cleanups, cancel)
326315
break

test/xds/xds_client_custom_dialer_test.go

-154
This file was deleted.

0 commit comments

Comments
 (0)