mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-31 04:04:51 +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 {
|
} else {
|
||||||
value := strings.Trim(m[2], `"`)
|
value := strings.Trim(m[2], `"`)
|
||||||
if len(value) > validation.LabelValueMaxLength {
|
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
|
continue
|
||||||
}
|
}
|
||||||
kconfig[m[1]] = value
|
kconfig[m[1]] = value
|
||||||
|
|
Loading…
Add table
Reference in a new issue