Merge pull request #45305 from jwforres/fix-error-msg-spelling

Automatic merge from submit-queue (batch tested with PRs 43006, 45305, 45390, 45412, 45392)

Fix spelling in container manager error message
This commit is contained in:
Kubernetes Submit Queue 2017-05-05 16:39:06 -07:00 committed by GitHub
commit b5831357dc

View File

@ -366,7 +366,7 @@ func (cm *containerManagerImpl) setupNode(activePods ActivePodsFunc) error {
}
err = cm.qosContainerManager.Start(cm.getNodeAllocatableAbsolute, activePods)
if err != nil {
return fmt.Errorf("failed to initialise top level QOS containers: %v", err)
return fmt.Errorf("failed to initialize top level QOS containers: %v", err)
}
}