mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-21 10:09:07 +00:00
Do not try to run metrics proxy when not configured
Failure test case was not correct; printed a (harmless) error message that was confusing. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
parent
62794285aa
commit
155676ee21
@ -124,8 +124,8 @@ start()
|
|||||||
# On desktop forward metrics to host if enabled in daemon.json
|
# On desktop forward metrics to host if enabled in daemon.json
|
||||||
case "$(mobyplatform)" in
|
case "$(mobyplatform)" in
|
||||||
windows|mac)
|
windows|mac)
|
||||||
METRICS_ADDR=$(cat /etc/docker/daemon.json | jq -r '."metrics-addr"')
|
METRICS_ADDR=$(cat /etc/docker/daemon.json | jq -e -r '."metrics-addr"')
|
||||||
if [ -n "$METRICS_ADDR" ]
|
if [ $? -eq 0 ]
|
||||||
then
|
then
|
||||||
METRICS_IP="$(echo "$METRICS_ADDR" | cut -d: -f1)"
|
METRICS_IP="$(echo "$METRICS_ADDR" | cut -d: -f1)"
|
||||||
METRICS_PORT="$(echo "$METRICS_ADDR" | cut -d: -f2)"
|
METRICS_PORT="$(echo "$METRICS_ADDR" | cut -d: -f2)"
|
||||||
|
Loading…
Reference in New Issue
Block a user