Commit 892cd7a2 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #40547 from PI-Victor/fix_typo_logging

Automatic merge from submit-queue (batch tested with PRs 40046, 40073, 40547, 40534, 40249) fix a typo in cni log **What this PR does / why we need it**: fixes a typo s/unintialized/uninitialized in pkg/kubelet/network/cni/cni.go **Release note**: ```release-note ```
parents e3a37434 388144f7
......@@ -180,7 +180,7 @@ func (plugin *cniNetworkPlugin) setDefaultNetwork(n *cniNetwork) {
func (plugin *cniNetworkPlugin) checkInitialized() error {
if plugin.getDefaultNetwork() == nil {
return errors.New("cni config unintialized")
return errors.New("cni config uninitialized")
}
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