From 4b100249a6cad67e002186816e64817313b636c7 Mon Sep 17 00:00:00 2001 From: Andreas Date: Sun, 28 Mar 2021 11:17:25 +0200 Subject: change 'maxsockets' default value back to 15 The default value for 'maxsockets' was changed during the refactoring in #2878 from 50 to 'Inifinity', this PR changes it to the more accurate value of 15, which was the default used in: https://github.com/npm/make-fetch-happen/blob/785af652ec0c8f108a43004903afd2183af93904/agent.js#L15 Fixes #2978 PR-URL: https://github.com/npm/cli/pull/2979 Credit: @wallrat Close: #2979 Reviewed-by: @ruyadorno Co-authored-by: Gar --- lib/utils/config/definitions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/utils') diff --git a/lib/utils/config/definitions.js b/lib/utils/config/definitions.js index 512ea8af9..db66aa495 100644 --- a/lib/utils/config/definitions.js +++ b/lib/utils/config/definitions.js @@ -1154,7 +1154,7 @@ define('long', { }) define('maxsockets', { - default: Infinity, + default: 15, type: Number, description: ` The maximum number of connections to use per origin (protocol/host/port -- cgit v1.2.3