Move error about connecting to healthz server to V(1)

This commit is contained in:
Michal Fojtik
2014-10-17 16:05:19 +02:00
parent 8261caedcb
commit 0bccce4520
2 changed files with 4 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ func (r *HealthyRegistry) ListMinions(ctx api.Context) (currentMinions *api.Mini
for _, minion := range list.Items {
status, err := health.DoHTTPCheck(r.makeMinionURL(minion.ID), r.client)
if err != nil {
glog.Errorf("%#v failed health check with error: %s", minion, err)
glog.V(1).Infof("%#v failed health check with error: %s", minion, err)
continue
}
if status == health.Healthy {