Update cancel context usage

This commit is contained in:
世界 2023-04-10 13:00:57 +08:00
parent f7f9a7ae20
commit bb63429079
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 23 additions and 12 deletions

View file

@ -101,10 +101,10 @@ func (c *Client) DialContext(ctx context.Context) (net.Conn, error) {
return nil, err
}
client := NewGunServiceClient(clientConn).(GunServiceCustomNameClient)
ctx, cancel := context.WithCancel(ctx)
ctx, cancel := common.ContextWithCancelCause(ctx)
stream, err := client.TunCustomName(ctx, c.serviceName)
if err != nil {
cancel()
cancel(err)
return nil, err
}
return NewGRPCConn(stream, cancel), nil