Skip to content

Commit

Permalink
fix: reduce repo and pull request concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
hfreire committed Oct 24, 2019
1 parent 2a335f4 commit 10e7e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ handyman.on('pulls:close', (owner, repo, number) => console.info(`Closed pull re
module.exports = async () => {
for (const owner of owners) {
try {
await handyman.helpOutWithPullRequests(owner, { repoConcurrency: 10, pullConcurrency: 5 })
await handyman.helpOutWithPullRequests(owner, { repoConcurrency: 5, pullConcurrency: 2 })
} catch (error) {
console.error(error)
}
Expand Down

0 comments on commit 10e7e54

Please sign in to comment.