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

Merge pull request #55056 from porridge/typo-percentil

Automatic merge from submit-queue. 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>. Fix a typo. **Release note**: ```release-note NONE ```
parents 3df3c580 c2ab5c82
...@@ -408,7 +408,7 @@ func VerifyPodStartupLatency(latency *PodStartupLatency) error { ...@@ -408,7 +408,7 @@ func VerifyPodStartupLatency(latency *PodStartupLatency) error {
return fmt.Errorf("too high pod startup latency 90th percentile: %v", latency.Latency.Perc90) return fmt.Errorf("too high pod startup latency 90th percentile: %v", latency.Latency.Perc90)
} }
if latency.Latency.Perc99 > podStartupThreshold { if latency.Latency.Perc99 > podStartupThreshold {
return fmt.Errorf("too high pod startup latency 99th percentil: %v", latency.Latency.Perc99) return fmt.Errorf("too high pod startup latency 99th percentile: %v", latency.Latency.Perc99)
} }
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