You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2018/05/24 10:02:30 UTC

[incubator-openwhisk-devtools] branch master updated: Remove duplicated port setting (#128)

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

jamesthomas 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 989379d  Remove duplicated port setting (#128)
989379d is described below

commit 989379ddbfeef80aa335eb2010b12c67322349df
Author: Augustin Wang <38...@users.noreply.github.com>
AuthorDate: Thu May 24 18:02:26 2018 +0800

    Remove duplicated port setting (#128)
---
 docker-compose/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker-compose/Makefile b/docker-compose/Makefile
index edb55d6..67855c0 100644
--- a/docker-compose/Makefile
+++ b/docker-compose/Makefile
@@ -131,7 +131,7 @@ print-host:
 .PHONY: check-required-ports
 check-required-ports:
 	echo "checking required ports ... "
-	for port in 2888 5984 8085 8888 9092 2888 8001; do \
+	for port in 2888 5984 8085 8888 9092 8001; do \
 		pid=`lsof -Pi :$$port -sTCP:LISTEN -t` ; \
 		if [ ! -z "$$pid" ];  then echo "$$(tput setaf 1)Port $$port is taken by PID:$$pid.$$(tput sgr0)"; exit 1; fi; \
 	done

-- 
To stop receiving notification emails like this one, please contact
jamesthomas@apache.org.