Skip to content

Commit

Permalink
Retry on CondaSSLError. (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice authored Dec 16, 2024
1 parent 706aec4 commit 9915e90
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/rapids-conda-retry
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ function runConda {
retryingMsg="Retrying after cleaning tarball cache, found 'CondaMultiError:' in output..."
needToRetry=1
needToClean=1
elif grep -q CondaSSLError: "${outfile}"; then
retryingMsg="Retrying, found 'CondaSSLError:' in output..."
needToRetry=1
elif grep -q "Connection broken:" "${outfile}"; then
retryingMsg="Retrying, found 'Connection broken:' in output..."
needToRetry=1
Expand Down Expand Up @@ -123,6 +126,7 @@ function runConda {
'ChunkedEncodingError:', \
'CondaHTTPError:', \
'CondaMultiError:', \
'CondaSSLError:', \
'Connection broken:', \
'ConnectionError:', \
'DependencyNeedsBuildingError:', \
Expand Down

0 comments on commit 9915e90

Please sign in to comment.