Merge "Policy UI doestn't show left menu or any content:"
authorPamela Dragosh <pdragosh@research.att.com>
Tue, 30 Apr 2019 13:21:28 +0000 (13:21 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 30 Apr 2019 13:21:28 +0000 (13:21 +0000)
packages/docker/src/main/docker/wait-for-port.sh

index befebf2..15c6eb8 100644 (file)
@@ -25,14 +25,17 @@ if [[ $# -ne 2 ]]; then
        exit 1
 fi
 
-host=$1
-port=$2
+export host=$1
+export port=$2
 
 echo "Waiting for $host port $port open"
-until nc -vz $host $port 2> /dev/null; do
-       sleep 1
-done
+timeout 120 bash -c 'until nc -vz "$host" "$port"; do echo -n "."; sleep 1; done'
+rc=$?
 
-echo "$host port $port is open"
+if [[ $rc != 0 ]]; then
+       echo "$host port $port cannot be reached"
+       exit $rc
+fi
 
+echo "$host port $port is open"
 exit 0