mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
feat(http): Increase concurrency limit for npm registry (#30400)
This commit is contained in:
parent
2e0c28791c
commit
c737c8acd0
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,10 @@ import type { ConcurrencyLimitRule, ThrottleLimitRule } from './types';
|
|||
|
||||
// The first match wins
|
||||
const concurrencyDefaults: ConcurrencyLimitRule[] = [
|
||||
{
|
||||
matchHost: 'registry.npmjs.org',
|
||||
concurrency: 999,
|
||||
},
|
||||
{
|
||||
matchHost: '*',
|
||||
concurrency: 16,
|
||||
|
|
Loading…
Reference in a new issue