Merge pull request #1171 from justincormack/metrics-proxy-fix

Do not try to run metrics proxy when not configured
This commit is contained in:
Nathan LeClaire 2017-02-09 13:21:50 -08:00 committed by GitHub
commit 09746e4860

View File

@ -124,8 +124,8 @@ start()
# On desktop forward metrics to host if enabled in daemon.json
case "$(mobyplatform)" in
windows|mac)
METRICS_ADDR=$(cat /etc/docker/daemon.json | jq -r '."metrics-addr"')
if [ -n "$METRICS_ADDR" ]
METRICS_ADDR=$(cat /etc/docker/daemon.json | jq -e -r '."metrics-addr"')
if [ $? -eq 0 ]
then
METRICS_IP="$(echo "$METRICS_ADDR" | cut -d: -f1)"
METRICS_PORT="$(echo "$METRICS_ADDR" | cut -d: -f2)"