This is an automated email from the ASF dual-hosted git repository.
csantanapr 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 82746b6 removed port check for ports 80 and 443 (#120)
82746b6 is described below
commit 82746b663744b88ad3bde23ae076abb85a651afe
Author: ddragosd <[email protected]>
AuthorDate: Tue May 8 08:32:47 2018 -0700
removed port check for ports 80 and 443 (#120)
---
docker-compose/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker-compose/Makefile b/docker-compose/Makefile
index 0a0d52d..2d8e870 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 80 443 2888 5984 8085 8888 9092 2888 8001; do \
+ for port in 2888 5984 8085 8888 9092 2888 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
[email protected].