diff --git a/tools/rapids-conda-retry b/tools/rapids-conda-retry index 9704a1b..ed53676 100755 --- a/tools/rapids-conda-retry +++ b/tools/rapids-conda-retry @@ -113,6 +113,9 @@ function runConda { elif grep -q "Multi-download failed" "${outfile}"; then retryingMsg="Retrying, found 'Multi-download failed' in output..." needToRetry=1 + elif grep -q "Response ended prematurely" "${outfile}"; then + retryingMsg="Retrying, found 'Response ended prematurely' in output..." + needToRetry=1 elif grep -q "Timeout was reached" "${outfile}"; then retryingMsg="Retrying, found 'Timeout was reached' in output..." needToRetry=1 @@ -133,6 +136,7 @@ function runConda { 'EOFError:', \ 'JSONDecodeError:', \ 'Multi-download failed', \ +'Response ended prematurely', \ 'Timeout was reached', \ segfault exit code 139" fi