mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
Add ctx to task.Any
This commit is contained in:
parent
6a0987c52a
commit
04e100e91a
2 changed files with 6 additions and 6 deletions
|
@ -34,13 +34,13 @@ func Run(ctx context.Context, tasks ...func() error) error {
|
|||
}
|
||||
|
||||
//goland:noinspection GoVetLostCancel
|
||||
func Any(ctx context.Context, tasks ...func() error) error {
|
||||
func Any(ctx context.Context, tasks ...func(ctx context.Context) error) error {
|
||||
runtimeCtx, cancel := context.WithCancel(ctx)
|
||||
var retErr error
|
||||
for _, task := range tasks {
|
||||
currentTask := task
|
||||
go func() {
|
||||
if err := currentTask(); err != nil {
|
||||
if err := currentTask(runtimeCtx); err != nil {
|
||||
retErr = err
|
||||
}
|
||||
cancel()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue