Remove capitalized letter in error message

Signed-off-by: Johannes M. Scheuermann <joh.scheuer@gmail.com>
This commit is contained in:
Johannes M. Scheuermann 2019-05-29 08:01:33 +02:00
parent 0d439c3474
commit 4f0948eed5

View File

@ -576,7 +576,7 @@ func (c *criService) setupPod(id string, path string, config *runtime.PodSandbox
func toCNIBandWidth(annotations map[string]string) (*cni.BandWidth, error) {
ingress, egress, err := bandwidth.ExtractPodBandwidthResources(annotations)
if err != nil {
return nil, fmt.Errorf("Error reading pod bandwidth annotations: %v", err)
return nil, errors.Errorf("reaing pod bandwidth annotations: %v", err)
}
bandWidth := &cni.BandWidth{}