Merge pull request #101304 from wangyx1992/capatial-log-controller

cleanup: fix errors in wrapped format and log capitalization in controller
This commit is contained in:
Kubernetes Prow Robot
2021-04-22 15:55:52 -07:00
committed by GitHub
13 changed files with 36 additions and 36 deletions

View File

@@ -73,7 +73,7 @@ func (o *PersistentVolumeBinderControllerOptions) Validate() []error {
errs := []error{}
if _, err := ParseVolumeHostFilters(o.VolumeHostCIDRDenylist, o.VolumeHostAllowLocalLoopback); err != nil {
errs = append(errs, fmt.Errorf("Bad --volume-host-ip-denylist/--volume-host-allow-local-loopback %w", err))
errs = append(errs, fmt.Errorf("bad --volume-host-ip-denylist/--volume-host-allow-local-loopback %w", err))
}
return errs
}