mirror of
https://github.com/nextcloud/server.git
synced 2026-02-28 04:20:37 -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
f15adce2a7
commit
08323ee834
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ const displayName = (nodes: Node[], view: View) => {
|
|||
return t('files', 'Delete')
|
||||
}
|
||||
|
||||
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