add another potential docker flakiness retry

Change-Id: I6d85fe48ade7a3161a5063d9c324294cf0b2314b
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/252439
Reviewed-by: Andrea Cirulli <andrea.cirulli@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: Aaron Ogata <aogata@instructure.com>
Product-Review: Aaron Ogata <aogata@instructure.com>
This commit is contained in:
Aaron Ogata 2020-11-10 14:34:47 -08:00
parent 792ed47c03
commit b9ee898297
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ set -o errexit -o errtrace -o nounset -o pipefail -o xtrace
EXIT_CODE=0
PULL_RESULT=$(docker $1 $2 2>&1) || EXIT_CODE=$?
if [[ $PULL_RESULT =~ (TLS handshake timeout|unknown blob|i/o timeout|Internal Server Error|error pulling image configuration|exceeded while awaiting headers) ]]; then
if [[ $PULL_RESULT =~ (TLS handshake timeout|unknown blob|i/o timeout|Internal Server Error|error pulling image configuration|exceeded while awaiting headers|no basic auth credentials) ]]; then
sleep 10
EXIT_CODE=0