Commit a4b4b99b authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #44468 from siggy/siggy/replica-calc-msg

Automatic merge from submit-queue (batch tested with PRs 44362, 44421, 44468, 43878, 44480) fix error message in ReplicaCalculator **What this PR does / why we need it**: fixes spelling in an error message **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: have previously signed the CLA for minikube, not sure if that covers this repo also. **Release note**: ```release-note ```
parents 079dc0d7 d6cd0704
......@@ -209,7 +209,7 @@ func (c *ReplicaCalculator) calcPlainMetricReplicas(metrics metricsclient.PodMet
}
if len(metrics) == 0 {
return 0, 0, fmt.Errorf("did not recieve metrics for any ready pods")
return 0, 0, fmt.Errorf("did not receive metrics for any ready pods")
}
usageRatio, utilization := metricsclient.GetMetricUtilizationRatio(metrics, targetUtilization)
......
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