Add a log when we drop a minion because of health checks.

This commit is contained in:
Brendan Burns 2014-08-25 11:43:02 -07:00
parent b01d0c2874
commit 3012c10ae3

View File

@ -79,6 +79,8 @@ func (r *HealthyRegistry) List() (currentMinions []string, err error) {
}
if status == health.Healthy {
result = append(result, minion)
} else {
glog.Errorf("%s failed a health check, ignoring.", minion)
}
}
return result, nil