Skip to content

Commit

Permalink
fix(fetch): allow to configure max fetch batch size with an ENV value
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Mar 6, 2024
1 parent 74d40b7 commit de45851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/consts.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ module.exports = {
FETCH_RETRY_INTERVAL: 1000,
FETCH_RETRY_EXPONENTIAL: 2,
FETCH_RETRY_MAX: 60 * 1000,
MAX_FETCH_RANGE: 1000,
MAX_FETCH_RANGE: Number((process.env.EENGINE_MAX_FETCH_RANGE || '').toString().trim()) || 1000,

generateWebhookTable() {
let entries = [];
Expand Down

0 comments on commit de45851

Please sign in to comment.