mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 18:37:17 +01: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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user