1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-15 04:57:56 +00:00

nfd-worker: fix typo in log message

This commit is contained in:
Markus Lehtonen 2023-11-24 15:34:48 +02:00
parent ec9d649654
commit f266533a7d

View file

@ -602,7 +602,7 @@ func getFeatureLabels(source source.LabelSource, labelWhiteList regexp.Regexp) (
// Validate label name.
errs := validation.IsQualifiedName(name)
if len(errs) > 0 {
klog.InfoS("ignoring label with invalid name", "lableKey", name, "errors", errs)
klog.InfoS("ignoring label with invalid name", "labelKey", name, "errors", errs)
continue
}