fix(deleteAction): Bump up delete requests concurrency to 5

A concurrency of who is not efficient. Low throughput, underutilization, high latency etc...

Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
This commit is contained in:
Arthur Schiwon 2024-06-17 11:05:26 +02:00
parent 323162f0f7
commit 2817b04a80
No known key found for this signature in database
GPG key ID: 7424F1874854DF23

View file

@ -59,7 +59,7 @@ const isAllFolders = (nodes: Node[]) => {
return !nodes.some(node => node.type !== FileType.Folder)
}
const queue = new PQueue({ concurrency: 1 })
const queue = new PQueue({ concurrency: 5 })
export const action = new FileAction({
id: 'delete',