mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
return the cancellation cause for cancelled dials (#4078)
This commit is contained in:
parent
1affe38703
commit
55eebd49ff
2 changed files with 21 additions and 1 deletions
|
@ -233,7 +233,7 @@ func (c *client) dial(ctx context.Context) error {
|
|||
select {
|
||||
case <-ctx.Done():
|
||||
c.conn.shutdown()
|
||||
return ctx.Err()
|
||||
return context.Cause(ctx)
|
||||
case err := <-errorChan:
|
||||
return err
|
||||
case recreateErr := <-recreateChan:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue