mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Fix task cancel
This commit is contained in:
parent
51de48ed21
commit
f8c0f71a89
1 changed files with 2 additions and 3 deletions
|
@ -27,9 +27,9 @@ func Run(ctx context.Context, tasks ...func() error) error {
|
|||
}()
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
retErr = append(retErr, ctx.Err())
|
||||
case <-runtimeCtx.Done():
|
||||
}
|
||||
retErr = append(retErr, ctx.Err())
|
||||
return E.Errors(retErr...)
|
||||
}
|
||||
|
||||
|
@ -48,8 +48,7 @@ func Any(ctx context.Context, tasks ...func(ctx context.Context) error) error {
|
|||
}
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
return ctx.Err()
|
||||
case <-runtimeCtx.Done():
|
||||
return retErr
|
||||
}
|
||||
return E.Errors(retErr, ctx.Err())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue