Merge pull request #1897 from Mukuwul/fix/nodeutilization-notsupported-error-message

fix(nodeutilization): correct misleading notSupportedError message
This commit is contained in:
kubernetes-prow[bot]
2026-08-29 13:34:05 +00:00
committed by GitHub
@@ -50,7 +50,7 @@ type notSupportedError struct {
}
func (e notSupportedError) Error() string {
return "maximum number of evicted pods per node reached"
return "pod usage quantification is not supported by this usage client"
}
func newNotSupportedError(usageClientType UsageClientType) *notSupportedError {