This is an automated email from the ASF dual-hosted git repository.

dragos pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-devtools.git


The following commit(s) were added to refs/heads/master by this push:
     new 7e15732  Do not print output when cheking if minio is up (#165)
7e15732 is described below

commit 7e1573289ac53510bafdd595417ed3730d4e3ccc
Author: Alvaro Lopez Garcia <[email protected]>
AuthorDate: Fri Oct 12 21:14:01 2018 +0200

    Do not print output when cheking if minio is up (#165)
---
 docker-compose/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker-compose/Makefile b/docker-compose/Makefile
index 7a3b23e..f54a82d 100644
--- a/docker-compose/Makefile
+++ b/docker-compose/Makefile
@@ -213,7 +213,7 @@ setup:
        cp -r ./apigateway/rclone ~/tmp/openwhisk
        $(shell cat ~/tmp/openwhisk/local.env) docker-compose --project-name 
openwhisk up minio 2>&1 > ~/tmp/openwhisk/setup.log &
        echo "pinging minio..."
-       until (curl --silent http://$(DOCKER_HOST_IP):9001/); do printf '.'; 
sleep 5; done
+       until (curl --silent http://$(DOCKER_HOST_IP):9001/ > /dev/null); do 
printf '.'; sleep 5; done
        echo " ... OK"
        docker run --rm -v ~/tmp/openwhisk/rclone:/root/.config/rclone \
                                        --link="openwhisk_minio_1:minio.docker" 
--network=openwhisk_default \

Reply via email to