Skip to content

Commit 08323ee

Browse files
committed
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 <[email protected]>
1 parent f15adce commit 08323ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/files/src/actions/deleteAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const displayName = (nodes: Node[], view: View) => {
103103
return t('files', 'Delete')
104104
}
105105

106-
const queue = new PQueue({ concurrency: 1 })
106+
const queue = new PQueue({ concurrency: 5 })
107107

108108
export const action = new FileAction({
109109
id: 'delete',

0 commit comments

Comments
 (0)