Skip to content

Commit

Permalink
change 'maxsockets' default value back to 50
Browse files Browse the repository at this point in the history
The default value for 'maxsockets' was changed during the refactoring in npm#2878 from 50 to 'Inifinity', this PR changes it back to the previous value of 50.

Fixes npm#2978
  • Loading branch information
wallrat committed Mar 28, 2021
1 parent ffead4a commit e392868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/config/definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ define('long', {
})

define('maxsockets', {
default: Infinity,
default: 50,
type: Number,
description: `
The maximum number of connections to use per origin (protocol/host/port
Expand Down

0 comments on commit e392868

Please sign in to comment.