Unverified Commit 99abe92a authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #58187 from caesarxuchao/fix-typo

Automatic merge from submit-queue (batch tested with PRs 57266, 58187, 58186, 46245, 56509). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. [minor] Fix a typo Fix https://github.com/kubernetes/kubernetes/pull/58025#discussion_r161052726
parents f2e46a21 9d1b6879
...@@ -174,7 +174,7 @@ func (a *MutatingWebhook) ValidateInitialization() error { ...@@ -174,7 +174,7 @@ func (a *MutatingWebhook) ValidateInitialization() error {
return fmt.Errorf("MutatingWebhook.convertor is not properly setup: %v", err) return fmt.Errorf("MutatingWebhook.convertor is not properly setup: %v", err)
} }
if a.defaulter == nil { if a.defaulter == nil {
return fmt.Errorf("MutatingWebhook.defaulter is not properly setup: %v") return fmt.Errorf("MutatingWebhook.defaulter is not properly setup")
} }
go a.hookSource.Run(wait.NeverStop) go a.hookSource.Run(wait.NeverStop)
return nil return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment