@@ -275,14 +275,10 @@ func makeConnection(ctx context.Context, id string, params client.BootstrapParam
275
275
276
276
return ttrpc .NewClient (conn , ttrpc .WithOnClose (onClose )), nil
277
277
case "grpc" :
278
- ctx , cancel := context .WithTimeout (ctx , time .Second * 100 )
279
- defer cancel ()
280
-
281
278
gopts := []grpc.DialOption {
282
279
grpc .WithTransportCredentials (insecure .NewCredentials ()),
283
- grpc .WithBlock (),
284
280
}
285
- return grpcDialContext (ctx , params .Address , onClose , gopts ... )
281
+ return grpcDialContext (params .Address , onClose , gopts ... )
286
282
default :
287
283
return nil , fmt .Errorf ("unexpected protocol: %q" , params .Protocol )
288
284
}
@@ -292,7 +288,6 @@ func makeConnection(ctx context.Context, id string, params client.BootstrapParam
292
288
// so we can have something similar to ttrpc.WithOnClose to have
293
289
// a callback run when the connection is severed or explicitly closed.
294
290
func grpcDialContext (
295
- ctx context.Context ,
296
291
address string ,
297
292
onClose func (),
298
293
gopts ... grpc.DialOption ,
@@ -316,7 +311,7 @@ func grpcDialContext(
316
311
conn .Close ()
317
312
318
313
target := dialer .DialAddress (address )
319
- client , err := grpc .DialContext ( ctx , target , gopts ... )
314
+ client , err := grpc .NewClient ( target , gopts ... )
320
315
if err != nil {
321
316
return nil , fmt .Errorf ("failed to create GRPC connection: %w" , err )
322
317
}
0 commit comments