Skip to content

Commit

Permalink
Add default values for documenting purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Mar 5, 2024
1 parent a930c32 commit bb1e864
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/config/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2419,6 +2419,7 @@ const options: RenovateOptions[] = [
description:
'Limit concurrent requests per host. Set to `-1` for no limit. Default value is 5 concurrent requests.',
type: 'integer',
default: 5,
stage: 'repository',
parents: ['hostRules'],
cli: false,
Expand All @@ -2429,9 +2430,9 @@ const options: RenovateOptions[] = [
description:
'Limit requests rate per host. Set to `-1` for no limit. Default value is 5 requests per second.',
type: 'integer',
default: 5,
stage: 'repository',
parents: ['hostRules'],
default: 0,
cli: false,
env: false,
},
Expand Down

0 comments on commit bb1e864

Please sign in to comment.