diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-06-17 07:17:03 +0100 |
---|---|---|
committer | fenn-cs <fenn25.fn@gmail.com> | 2024-06-17 07:17:06 +0100 |
commit | 08323ee8344fc147511c428cfcc91efd5a64eeb8 (patch) | |
tree | 7c36e73b27a17e4f583a2da98c036bde63e0d0d3 /apps/files/src | |
parent | f15adce2a74db2706934489bca55652d597e0bc7 (diff) | |
download | nextcloud-server-08323ee8344fc147511c428cfcc91efd5a64eeb8.tar.gz nextcloud-server-08323ee8344fc147511c428cfcc91efd5a64eeb8.zip |
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>
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/actions/deleteAction.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/actions/deleteAction.ts b/apps/files/src/actions/deleteAction.ts index 23106a5d15f..be39ecdcf04 100644 --- a/apps/files/src/actions/deleteAction.ts +++ b/apps/files/src/actions/deleteAction.ts @@ -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', |