reduce conccurent upload to 4
This commit is contained in:
parent
11ace7d793
commit
e50c8864ec
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ class UploadService {
|
|||
ErrorHandler(e);
|
||||
}
|
||||
const uploadProcesses = [];
|
||||
for (let i = 0; i < Math.min(5, this.totalFileCount); i++) {
|
||||
for (let i = 0; i < Math.min(4, this.totalFileCount); i++) {
|
||||
uploadProcesses.push(
|
||||
this.uploader(
|
||||
await new CryptoWorker(),
|
||||
|
|
Loading…
Add table
Reference in a new issue