Skip to content

Commit

Permalink
Increase combined updates rate limit delay
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed May 5, 2024
1 parent 5764f4e commit 0996fc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private String runSingleUpdate(String providerType, String urlValue, // NOSONAR
IGitClient gitClient = new DependencyUpdaterFacade().getGitClient(providerType, urlValue, userValue, token);
GitLocal gitLocal = new GitLocal("target", urlValue, userValue, userEmail, token);
try {
new DependencyUpdaterFacade().mergeCombinedPullRequest(gitClient, gitLocal, repo, pulls, 1000, dryRun);
new DependencyUpdaterFacade().mergeCombinedPullRequest(gitClient, gitLocal, repo, pulls, 2000, dryRun);
return "";
} catch (Exception e) {
log.error("Can not create combined pull request", e);
Expand Down

0 comments on commit 0996fc7

Please sign in to comment.