This commit is contained in:
Yuki Yugui Sonoda 2014-07-18 14:13:55 +09:00
parent 5e31ca3b27
commit e0d749f952

View File

@ -48,7 +48,7 @@ type MuxHealthChecker struct {
// HealthCheck delegates the health-checking of the container to one of the bundled implementations.
// It chooses an implementation according to container.LivenessProbe.Type.
// If there is no matching healthc checker it returns Unknown, nil.
// If there is no matching health checker it returns Unknown, nil.
func (m *MuxHealthChecker) HealthCheck(container api.Container) (Status, error) {
checker, ok := m.checkers[container.LivenessProbe.Type]
if !ok || checker == nil {