Skip to content

Commit

Permalink
Increase build image backoff time and attempts (#2267)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdisanti authored Feb 2, 2023
1 parent 681d3b3 commit 074464e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/acquire-build-image
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ class Shell:


# Pulls a Docker image and retries if it gets throttled
def docker_pull_with_retry(shell, image_name, image_tag, throttle_sleep_time=45, retryable_error_sleep_time=1):
def docker_pull_with_retry(shell, image_name, image_tag, throttle_sleep_time=120, retryable_error_sleep_time=1):
if shell.platform() == Platform.ARM_64:
return DockerPullResult.REMOTE_ARCHITECTURE_MISMATCH
for attempt in range(1, 5):
for attempt in range(1, 6):
announce(f"Attempting to pull remote image {image_name}:{image_tag} (attempt {attempt})...")
result = shell.docker_pull(image_name, image_tag)
if result == DockerPullResult.ERROR_THROTTLED:
Expand Down

0 comments on commit 074464e

Please sign in to comment.