Skip to content

Commit 4c29fc2

Browse files
[3.13] gh-134262: Fix off by one errors in download retry functions (GH-137775)
(cherry picked from commit e64395e) Co-authored-by: Emma Smith <[email protected]>
1 parent a335967 commit 4c29fc2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PCbuild/get_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
def retrieve_with_retries(download_location, output_path, reporthook,
1313
max_retries=7):
1414
"""Download a file with exponential backoff retry and save to disk."""
15-
for attempt in range(max_retries):
15+
for attempt in range(max_retries + 1):
1616
try:
1717
resp = urlretrieve(
1818
download_location,

Tools/build/generate_sbom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def download_with_retries(download_location: str,
172172
base_delay: float = 2.25,
173173
max_jitter: float = 1.0) -> typing.Any:
174174
"""Download a file with exponential backoff retry."""
175-
for attempt in range(max_retries):
175+
for attempt in range(max_retries + 1):
176176
try:
177177
resp = urllib.request.urlopen(download_location)
178178
except urllib.error.URLError as ex:

0 commit comments

Comments
 (0)