From 55505617dff519e047ecb895cb80954057db95da Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Wed, 17 Jan 2018 14:38:39 -0800 Subject: [PATCH] proxy/grpcproxy: remove "Errors" field Signed-off-by: Gyuho Lee --- proxy/grpcproxy/health.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/proxy/grpcproxy/health.go b/proxy/grpcproxy/health.go index 1a6d0cf67..e5e91f29b 100644 --- a/proxy/grpcproxy/health.go +++ b/proxy/grpcproxy/health.go @@ -37,8 +37,5 @@ func checkHealth(c *clientv3.Client) etcdhttp.Health { if err == nil || err == rpctypes.ErrPermissionDenied { h.Health = "true" } - if h.Health != "true" { - h.Errors = append(h.Errors, err.Error()) - } return h }