Merge pull request #114920 from astefanutti/pr-codegen-144

fix: applyconfiguration-gen fails for types with non-builtin map fields
This commit is contained in:
Kubernetes Prow Robot 2023-02-13 06:49:30 -08:00 committed by GitHub
commit 79886690d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,6 +86,7 @@ func (t refGraph) applyConfigForType(field *types.Type) *types.Type {
return &types.Type{
Kind: types.Map,
Elem: t.applyConfigForType(field.Elem),
Key: t.applyConfigForType(field.Key),
}
}
return field