Add ctx to task.Any

This commit is contained in:
世界 2022-07-08 12:16:39 +08:00
parent 6a0987c52a
commit 04e100e91a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 6 additions and 6 deletions

View file

@ -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()