Skip to content

Commit

Permalink
increase wait between tries
Browse files Browse the repository at this point in the history
  • Loading branch information
Gummibeer committed Aug 28, 2024
1 parent 834c1c4 commit 92ddab7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Commands/LoadGithubCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private function applications(): Collection
);

if (empty($contributors)) {
usleep(5 * 1000);
usleep(10 * 1000);
}

$tries++;
Expand Down Expand Up @@ -141,7 +141,7 @@ private function packages(): Collection
);

if (empty($contributors)) {
usleep(5 * 1000);
usleep(10 * 1000);
}

$tries++;
Expand Down

0 comments on commit 92ddab7

Please sign in to comment.