config: RawConfig merge should only set unknown keys non-nil if
non-empty
This commit is contained in:
parent
a89dcfd1b1
commit
fee0351c66
|
@ -191,17 +191,19 @@ func (r *RawConfig) Merge(other *RawConfig) *RawConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build the unknown keys
|
// Build the unknown keys
|
||||||
unknownKeys := make(map[string]struct{})
|
if len(r.unknownKeys) > 0 || len(other.unknownKeys) > 0 {
|
||||||
for _, k := range r.unknownKeys {
|
unknownKeys := make(map[string]struct{})
|
||||||
unknownKeys[k] = struct{}{}
|
for _, k := range r.unknownKeys {
|
||||||
}
|
unknownKeys[k] = struct{}{}
|
||||||
for _, k := range other.unknownKeys {
|
}
|
||||||
unknownKeys[k] = struct{}{}
|
for _, k := range other.unknownKeys {
|
||||||
}
|
unknownKeys[k] = struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
result.unknownKeys = make([]string, 0, len(unknownKeys))
|
result.unknownKeys = make([]string, 0, len(unknownKeys))
|
||||||
for k, _ := range unknownKeys {
|
for k, _ := range unknownKeys {
|
||||||
result.unknownKeys = append(result.unknownKeys, k)
|
result.unknownKeys = append(result.unknownKeys, k)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Reference in New Issue