🐎 Restrict to 3 concurrent tasks for improved performance
This commit is contained in:
parent
496a9500a7
commit
d4920a36ef
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ export default async function getPatch({ product, from, to, sourceDirectory, tar
|
|||
|
||||
//run tasks
|
||||
try {
|
||||
await taskManager(tasks, 5);
|
||||
await taskManager(tasks, 3);
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue