Merge pull request #37664 from euank/fix-gci-typo

Automatic merge from submit-queue (batch tested with PRs 37870, 36643, 37664, 37545)

cluster/gci: Fix typo
pull/6/head
Kubernetes Submit Queue 2016-12-06 00:22:56 -08:00 committed by GitHub
commit 9d7644286d
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ function try-load-docker-image {
local -i attempt_num=1
until timeout 30 docker load -i "${img}"; do
if [[ "${attempt_num}" == "${max_attempts}" ]]; then
echo "Fail to load docker image file ${img} after ${max_attempts} retries. Exist!!"
echo "Fail to load docker image file ${img} after ${max_attempts} retries. Exit!!"
exit 1
else
attempt_num=$((attempt_num+1))