We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f720131 commit e5115c4Copy full SHA for e5115c4
packages/core/src/constants.ts
@@ -206,8 +206,8 @@ export const defaultConfig: UserConfig = {
206
workerCreationDelay: 500,
207
retryLimit: 3,
208
timeout: 5 * 60 * 1000, // wait for up to 5 minutes.
209
- // max concurrency is the amount of cpu cores we have
210
- maxConcurrency: Math.max(os.cpus().length - 1, 1),
+ // lighthouse runs in its own process so we can use half of the available cores
+ maxConcurrency: Math.max(Math.floor(os.cpus().length / 2), 1),
211
skipDuplicateUrls: false,
212
retryDelay: 2000,
213
// Important, when using Lighthouse we want browser isolation.
0 commit comments