Skip to content

Commit

Permalink
Retry 'Unexpected error [0-9]* on netlink descriptor [0-9]*' (#133)
Browse files Browse the repository at this point in the history
Co-authored-by: Mike Sarahan <msarahan@gmail.com>
  • Loading branch information
bdice and msarahan authored Jan 31, 2025
1 parent 0558ffc commit 02046ee
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 @@ -119,6 +119,9 @@ function runConda {
elif grep -q "Timeout was reached" "${outfile}"; then
retryingMsg="Retrying, found 'Timeout was reached' in output..."
needToRetry=1
elif grep -q "Unexpected error [0-9]+ on netlink descriptor [0-9]+" "${outfile}"; then
retryingMsg="Retrying, found 'Unexpected error [0-9]* on netlink descriptor [0-9]*' in output..."
needToRetry=1
elif [[ $exitcode -eq 139 ]]; then
retryingMsg="Retrying, command resulted in a segfault. This may be an intermittent failure..."
needToRetry=1
Expand All @@ -138,6 +141,7 @@ function runConda {
'Multi-download failed', \
'Response ended prematurely', \
'Timeout was reached', \
'Unexpected error [0-9]* on netlink descriptor [0-9]*', \
segfault exit code 139"
fi

Expand Down

0 comments on commit 02046ee

Please sign in to comment.