Fix a typo.

pull/6/head
Marcin Owsiany 2017-11-03 13:43:32 +01:00
parent d118e44320
commit c2ab5c8246
1 changed files with 1 additions and 1 deletions

View File

@ -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
} }