8000 Decrease shrinkwrap-deps.json file writing concurrency to 10. · psy-repos-typescript/rushstack@43580c5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 43580c5

Browse files
authored
Decrease shrinkwrap-deps.json file writing concurrency to 10.
1 parent 2abcafe commit 43580c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/rush-lib/src/logic/installManager/WorkspaceInstallManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export class WorkspaceInstallManager extends BaseInstallManager {
389389
async (project) => {
390390
await tempShrinkwrapFile.getProjectShrinkwrap(project)?.updateProjectShrinkwrapAsync();
391391
},
392-
{ concurrency: 30 }
392+
{ concurrency: 10 }
393393
);
394394
} else if (
395395
this.rushConfiguration.packageManager === 'pnpm' &&
@@ -402,7 +402,7 @@ export class WorkspaceInstallManager extends BaseInstallManager {
402402
async (project) => {
403403
await BaseProjectShrinkwrapFile.saveEmptyProjectShrinkwrapFileAsync(project);
404404
},
405-
{ concurrency: 30 }
405+
{ concurrency: 10 }
406406
);
407407
} else {
408408
// This is an unexpected case

0 commit comments

Comments
 (0)
0