Skip to content

Commit 635f83c

Browse files
authored
Merge pull request #45908 from nextcloud/backport/stable27/delete-concurrency
[stable27] fix(deleteAction): Bump up delete requests concurrency to 5
2 parents 12342fc + eced345 commit 635f83c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/files/src/actions/deleteAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { encodePath } from '@nextcloud/paths'
3232

3333
import PQueue from 'p-queue'
3434

35-
const queue = new PQueue({ concurrency: 1 })
35+
const queue = new PQueue({ concurrency: 5 })
3636

3737
registerFileAction(new FileAction({
3838
id: 'delete',

dist/files-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)