We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 778c31c commit e4e4033Copy full SHA for e4e4033
1 file changed
PCbuild/get_external.py
@@ -49,6 +49,7 @@ def retrieve_with_retries(download_location, output_path, reporthook,
49
except (urllib.error.URLError, ConnectionError) as ex:
50
if attempt == max_retries:
51
raise OSError(f'Download from {download_location} failed.') from ex
52
+ trigger_automatic_root_certificate_update(download_location)
53
time.sleep(2.25**attempt)
54
else:
55
return resp
0 commit comments