Merge pull request #1019 from brendandburns/minion

Add a log when we drop a minion because of health checks.
This commit is contained in:
Daniel Smith 2014-08-25 11:44:29 -07:00
commit 290ad4083c

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