mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
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:
parent
323162f0f7
commit
2817b04a80
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue