@@ -119,4 +119,4 @@ async function startCheck(concurrency) {
})
}
-startCheck(200)
+startCheck(300)
@@ -61,7 +61,7 @@ export async function forEachAsync(
array: any[],
concurrency: number,
asyncFn: (item: any, index: number) => Promise<void>,
- timeout: number=60000,
+ timeout: number=160000,
) {
let running = 0 // 当前正在运行的任务数
let completed = 0 // 完成的任务数