Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes endpoint propagation failure in services e2e #3684

Merged
merged 2 commits into from
Jan 21, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion hack/e2e-suite/services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ function wait_for_service_up() {
set -e;
for i in $(seq -s' ' 1 $4); do
curl -s --connect-timeout 1 http://$2:$3;
echo;
done | sort | uniq
"))

Expand Down Expand Up @@ -252,7 +253,8 @@ function verify_from_container() {
ok=false
for j in $(seq -s' ' 1 10); do
if wget -q -T 1 -O - http://$2:$3; then
ok=true
echo
ok=true
break
fi
sleep 1
Expand Down