From 43b46b3875c393d6335b1c4567c3e6865583e23b Mon Sep 17 00:00:00 2001 From: Joachim Bartosik Date: Fri, 29 Dec 2023 16:30:36 +0000 Subject: [PATCH] Fix typo --- cluster-autoscaler/metrics/metrics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-autoscaler/metrics/metrics.go b/cluster-autoscaler/metrics/metrics.go index a9432a32bfcf..bfb4d2c432bf 100644 --- a/cluster-autoscaler/metrics/metrics.go +++ b/cluster-autoscaler/metrics/metrics.go @@ -91,7 +91,7 @@ const ( // debugging purposes. LogLongDurationThreshold = 5 * time.Second // PodEvictionSucceed means creation of the pod eviction object succeed - PodEvictionSucceed PodEvictionResult = "succeed" + PodEvictionSucceed PodEvictionResult = "succeeded" // PodEvictionFailed means creation of the pod eviction object failed PodEvictionFailed PodEvictionResult = "failed" )