Skip to content

Commit

Permalink
Change concurrency default to fix #3596
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Dec 30, 2024
1 parent cc7e5a5 commit db1aeb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/UserConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ class UserConfig {
/** @type {number|undefined} */
#uniqueId;
/** @type {number} */
#concurrency = os.availableParallelism();
#concurrency = 1;
// Before using os.availableParallelism(); see https://github.com/11ty/eleventy/issues/3596

constructor() {
// These are completely unnecessary lines to satisfy TypeScript
Expand Down

0 comments on commit db1aeb8

Please sign in to comment.