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

Waiting for the Whisk invoker without HEAD but GET #334

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker-compose/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ download-catalog:
.PHONY: quick-start-pause
quick-start-pause:
echo "waiting for the Whisk invoker to come up ... "
until $$(curl -s --output /dev/null --silent --head --fail http://$(DOCKER_HOST_IP):8085/ping); do printf '.'; sleep 5; done
# removed --head from this curl because of an upstream change https://github.com/apache/openwhisk/pull/4494
until $$(curl -s --output /dev/null --silent --fail http://$(DOCKER_HOST_IP):8085/ping); do printf '.'; sleep 5; done
echo " ... OK"
sleep 30

Expand Down