Merge pull request #8238 from thockin/probe-logs

Better kubelet logging for probes
This commit is contained in:
Dawn Chen
2015-05-21 09:11:11 -07:00
11 changed files with 162 additions and 114 deletions

View File

@@ -81,8 +81,8 @@ func (fakeKubeletClient) GetConnectionInfo(host string) (string, uint, http.Roun
return "", 0, nil, errors.New("Not Implemented")
}
func (fakeKubeletClient) HealthCheck(host string) (probe.Result, error) {
return probe.Success, nil
func (fakeKubeletClient) HealthCheck(host string) (probe.Result, string, error) {
return probe.Success, "", nil
}
type delegateHandler struct {