Skip to content

Commit

Permalink
Don't use a shell array where not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
thockin committed Jul 14, 2015
1 parent 832382b commit 957514d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/e2e-suite/services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ wait_for_apiserver() {

local i
for i in $(seq 1 12); do
results=($(ssh-to-node "${master}" "
results=$(ssh-to-node "${master}" "
wget -q -T 1 -O - http://localhost:8080/healthz || true
"))
")
if [[ "${results}" == "ok" ]]; then
return
fi
Expand Down

0 comments on commit 957514d

Please sign in to comment.