-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Description
Please see the FAQ in our main README.md before submitting your issue.
NewClient
Line 124 in c31cec3
| // The DialOptions returned by WithBlock, WithTimeout, and |
but
Line 392 in c31cec3
| func WithTimeout(d time.Duration) DialOption { |
// WithTimeout returns a DialOption that configures a timeout for dialing a
// ClientConn initially. This is valid if and only if WithBlock() is present.
//
// Deprecated: use DialContext instead of Dial and context.WithTimeout
// instead. Will be supported throughout 1.x.
hence, which means in 1.63 we Deprecated timeout support?
as I found this issue by lint Hyperledger-TWGC/tape#384
if I change to the NewClient following unit test case
Line 390 in c31cec3
| func (s) TestWithTimeout(t *testing.T) { |
Any suggestion?
fabtagliaferro