改进DNS域名解析相关函数

This commit is contained in:
GoEdgeLab
2023-06-05 12:36:29 +08:00
parent fdfb6c70dd
commit 91c9b5a496
6 changed files with 199 additions and 30 deletions

View File

@@ -0,0 +1,18 @@
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
package taskutils_test
import (
"github.com/TeaOSLab/EdgeAPI/internal/utils/taskutils"
"sync"
"testing"
)
func TestRunConcurrent(t *testing.T) {
err := taskutils.RunConcurrent([]string{"a", "b", "c", "d", "e"}, 3, func(task any, locker *sync.RWMutex) {
t.Log("run", task)
})
if err != nil {
t.Fatal(err)
}
}