INNER CODE UNIT · Java
delay
spring-cloud/spring-cloud-kubernetes · .github/workflows/composites/scripts/retry-command.sh:82
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 "$@"