You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
It seems that the await Promise.all(..) (referenced code below) causes that all packages were treated in parallel. Therefore all http request to the registry happening more or less parallel. Therefore, all http requests to the registry are made more or less in parallel. This causes problems when the number of dependencies reaches a certain limit.
Hello,
It seems that the
await Promise.all(..)
(referenced code below) causes that all packages were treated in parallel. Therefore all http request to the registry happening more or less parallel. Therefore, all http requests to the registry are made more or less in parallel. This causes problems when the number of dependencies reaches a certain limit.swap-lock-registry/src/npm.ts
Lines 6 to 17 in 4dd0001
To solve this issues a function could help which only excutes certain amount task in parallel like the following one:
The effected code segment could then look like this:
Best regards
Sven
The text was updated successfully, but these errors were encountered: