Skip to content

Commit

Permalink
Merge pull request #45909 from nextcloud/backport/45902/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(deleteAction): Bump up delete requests concurrency to 5
  • Loading branch information
blizzz authored Jun 17, 2024
2 parents 323162f + 7a2a0f7 commit 78fd195
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/files/src/actions/deleteAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions dist/core-common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/core-common.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/files-init.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files-init.js.map

Large diffs are not rendered by default.

0 comments on commit 78fd195

Please sign in to comment.