1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-14 20:56:42 +00:00

Merge pull request #688 from marquiz/devel/e2e-image-poll-time

scripts: increase e2e-test image poll timeout to 12mins
This commit is contained in:
Kubernetes Prow Robot 2021-12-02 05:33:33 -08:00 committed by GitHub
commit 21d3137753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,8 +19,8 @@ i=1
while true; do
if make poll-images; then
break
elif [ $i -ge 10 ]; then
"ERROR: too many tries when polling for image"
elif [ $i -ge 12 ]; then
echo "ERROR: too many tries when polling for image"
exit 1
fi
sleep 60