mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-15 17:50:49 +00:00
Merge pull request #258 from marquiz/feature/fixes
kernel: fix undefined symbol error
This commit is contained in:
commit
a5d40648c0
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ func parseKconfig() (map[string]string, error) {
|
|||
} else {
|
||||
value := strings.Trim(m[2], `"`)
|
||||
if len(value) > validation.LabelValueMaxLength {
|
||||
logger.Printf("WARNING: ignoring kconfig option '%s': value exceeds max length of %d characters", m[1], validation.LabelValueMaxLength)
|
||||
log.Printf("WARNING: ignoring kconfig option '%s': value exceeds max length of %d characters", m[1], validation.LabelValueMaxLength)
|
||||
continue
|
||||
}
|
||||
kconfig[m[1]] = value
|
||||
|
|
Loading…
Reference in a new issue