mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
ExternalProject: Retry download for error code 35
This error code indicates a TLS handshake failure, which we've observed intermittently when downloading artifacts from GitHub.
This commit is contained in:
@@ -100,7 +100,7 @@ message(STATUS "Downloading...
|
||||
timeout='@TIMEOUT_MSG@'
|
||||
inactivity timeout='@INACTIVITY_TIMEOUT_MSG@'"
|
||||
)
|
||||
set(download_retry_codes 7 6 8 15 28)
|
||||
set(download_retry_codes 7 6 8 15 28 35)
|
||||
set(skip_url_list)
|
||||
set(status_code)
|
||||
foreach(i RANGE ${retry_number})
|
||||
|
||||
Reference in New Issue
Block a user