Skip to content

Commit 63b4688

Browse files
committed
Use grpc.NewClient instead of deprecated ones
Signed-off-by: Maksym Pavlenko <[email protected]>
1 parent a5be629 commit 63b4688

File tree

5 files changed

+8
-28
lines changed

5 files changed

+8
-28
lines changed

client/client.go

+2-7
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,14 @@ func New(address string, opts ...Opt) (*Client, error) {
115115
}
116116
if address != "" {
117117
backoffConfig := backoff.DefaultConfig
118-
backoffConfig.MaxDelay = 3 * time.Second
118+
backoffConfig.MaxDelay = copts.timeout
119119
connParams := grpc.ConnectParams{
120120
Backoff: backoffConfig,
121121
}
122122
gopts := []grpc.DialOption{
123-
grpc.WithBlock(),
124123
grpc.WithTransportCredentials(insecure.NewCredentials()),
125-
grpc.FailOnNonTempDialError(true),
126124
grpc.WithConnectParams(connParams),
127125
grpc.WithContextDialer(dialer.ContextDialer),
128-
grpc.WithReturnConnectionError(),
129126
}
130127
if len(copts.dialOptions) > 0 {
131128
gopts = copts.dialOptions
@@ -143,9 +140,7 @@ func New(address string, opts ...Opt) (*Client, error) {
143140
}
144141

145142
connector := func() (*grpc.ClientConn, error) {
146-
ctx, cancel := context.WithTimeout(context.Background(), copts.timeout)
147-
defer cancel()
148-
conn, err := grpc.DialContext(ctx, dialer.DialAddress(address), gopts...)
143+
conn, err := grpc.NewClient(dialer.DialAddress(address), gopts...)
149144
if err != nil {
150145
return nil, fmt.Errorf("failed to dial %q: %w", address, err)
151146
}

cmd/containerd/command/publish.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,11 @@ func connect(address string, d func(context.Context, string) (net.Conn, error))
100100
Backoff: backoffConfig,
101101
}
102102
gopts := []grpc.DialOption{
103-
grpc.WithBlock(),
104103
grpc.WithTransportCredentials(insecure.NewCredentials()),
105104
grpc.WithContextDialer(d),
106-
grpc.FailOnNonTempDialError(true),
107105
grpc.WithConnectParams(connParams),
108106
}
109-
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
110-
defer cancel()
111-
conn, err := grpc.DialContext(ctx, dialer.DialAddress(address), gopts...)
107+
conn, err := grpc.NewClient(dialer.DialAddress(address), gopts...)
112108
if err != nil {
113109
return nil, fmt.Errorf("failed to dial %q: %w", address, err)
114110
}

cmd/containerd/server/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ func (pc *proxyClients) getClient(address string) (*grpc.ClientConn, error) {
587587
grpc.WithDefaultCallOptions(grpc.MaxCallSendMsgSize(defaults.DefaultMaxSendMsgSize)),
588588
}
589589

590-
conn, err := grpc.Dial(dialer.DialAddress(address), gopts...)
590+
conn, err := grpc.NewClient(dialer.DialAddress(address), gopts...)
591591
if err != nil {
592592
return nil, fmt.Errorf("failed to dial %q: %w", address, err)
593593
}

core/runtime/v2/shim.go

+2-7
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,10 @@ func makeConnection(ctx context.Context, id string, params client.BootstrapParam
275275

276276
return ttrpc.NewClient(conn, ttrpc.WithOnClose(onClose)), nil
277277
case "grpc":
278-
ctx, cancel := context.WithTimeout(ctx, time.Second*100)
279-
defer cancel()
280-
281278
gopts := []grpc.DialOption{
282279
grpc.WithTransportCredentials(insecure.NewCredentials()),
283-
grpc.WithBlock(),
284280
}
285-
return grpcDialContext(ctx, params.Address, onClose, gopts...)
281+
return grpcDialContext(params.Address, onClose, gopts...)
286282
default:
287283
return nil, fmt.Errorf("unexpected protocol: %q", params.Protocol)
288284
}
@@ -292,7 +288,6 @@ func makeConnection(ctx context.Context, id string, params client.BootstrapParam
292288
// so we can have something similar to ttrpc.WithOnClose to have
293289
// a callback run when the connection is severed or explicitly closed.
294290
func grpcDialContext(
295-
ctx context.Context,
296291
address string,
297292
onClose func(),
298293
gopts ...grpc.DialOption,
@@ -316,7 +311,7 @@ func grpcDialContext(
316311
conn.Close()
317312

318313
target := dialer.DialAddress(address)
319-
client, err := grpc.DialContext(ctx, target, gopts...)
314+
client, err := grpc.NewClient(target, gopts...)
320315
if err != nil {
321316
return nil, fmt.Errorf("failed to create GRPC connection: %w", err)
322317
}

internal/cri/io/helpers.go

+2-8
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,8 @@ func openStream(ctx context.Context, urlStr string) (streamingapi.Stream, error)
245245
return stream, nil
246246

247247
case "grpc":
248-
ctx, cancel := context.WithTimeout(ctx, time.Second*100)
249-
defer cancel()
250-
251-
gopts := []grpc.DialOption{
252-
grpc.WithTransportCredentials(insecure.NewCredentials()),
253-
grpc.WithBlock(),
254-
}
255-
conn, err := grpc.DialContext(ctx, realAddress, gopts...)
248+
gopts := []grpc.DialOption{grpc.WithTransportCredentials(insecure.NewCredentials())}
249+
conn, err := grpc.NewClient(realAddress, gopts...)
256250
if err != nil {
257251
return nil, err
258252
}

0 commit comments

Comments
 (0)