Skip to content

Commit

Permalink
add additional sleep so we don't hit rate limit when there are no dep…
Browse files Browse the repository at this point in the history
…loyments
  • Loading branch information
ianjennings authored Apr 12, 2024
1 parent 4544677 commit c0bc9cc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ async function waitForDeployment(options) {
if (elapsed >= timeout) {
throw new Error(`Timing out after ${timeout} seconds (${elapsed} seconds elapsed)`);
}

await sleep(interval); // Debug if this is correctly pausing

}
}

Expand Down

0 comments on commit c0bc9cc

Please sign in to comment.