Skip to content

Commit 6b5efba

Browse files
vvolandk8s-infra-cherrypick-robot
authored and
k8s-infra-cherrypick-robot
committed
client: Respect client.WithTimeout option
Fix the gRPC client dialer not using the timeout passed by the containerd client timeout option. Commit 63b4688 replaced the usage of deprecated `grpc.DialContext` with `grpc.NewClient`. However, the `dialer.ContextDialer` relied on the context deadline to propagate the timeout: https://github.com/containerd/containerd/blob/388fb336b0a458e2cf64212072743e622a3f44c7/vendor/google.golang.org/grpc/clientconn.go#L216 This assumption is now broken, because `grpc.NewClient` doesn't do any initial connection and defers it to the first RPC usage. This commit passes the timeout via the `MinConnectTimeout` grpc connection param, which will be applied to **every** connection attempt (not just the first). Signed-off-by: Paweł Gronowski <[email protected]>
1 parent 76db058 commit 6b5efba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/client.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ func New(address string, opts ...Opt) (*Client, error) {
129129
backoffConfig := backoff.DefaultConfig
130130
backoffConfig.MaxDelay = copts.timeout
131131
connParams := grpc.ConnectParams{
132-
Backoff: backoffConfig,
132+
Backoff: backoffConfig,
133+
MinConnectTimeout: copts.timeout,
133134
}
134135
gopts := []grpc.DialOption{
135136
grpc.WithTransportCredentials(insecure.NewCredentials()),

0 commit comments

Comments
 (0)