INNER CODE UNIT · Java

attempt

spring-cloud/spring-cloud-kubernetes · .github/workflows/composites/scripts/retry-command.sh:81

    attempt=$(( attempt + 1 ))
    delay=$(( RETRY_DELAY * attempt ))

    echo "=========================================================================="
    echo "command failed with exit code ${rc}"
    echo "retrying in ${delay}s (attempt $(( attempt + 1 )) of ${total}): $*"
    echo "=========================================================================="
    sleep "${delay}"
  done
}

main "$@"

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…