From 1c0feb24d712c59a43ee83858192acbeeedd9153 Mon Sep 17 00:00:00 2001 From: Miki Yutani Date: Sun, 4 Jul 2021 06:56:56 +0000 Subject: [PATCH] Waiting for the Whisk invoker without HEAD but GET --- docker-compose/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose/Makefile b/docker-compose/Makefile index 48668519..56994eea 100644 --- a/docker-compose/Makefile +++ b/docker-compose/Makefile @@ -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