tpl/resources: Improve resources.Concat error message

Closes #7428
This commit is contained in:
Joe Mooring 2024-08-29 15:28:49 -07:00 committed by Bjørn Erik Pedersen
parent 53a8de21b8
commit a3684c8361

View file

@ -224,7 +224,7 @@ func (ns *Namespace) Concat(targetPathIn any, r any) (resource.Resource, error)
case resource.ResourcesConverter:
rr = v.ToResources()
default:
return nil, fmt.Errorf("slice %T not supported in concat", r)
return nil, fmt.Errorf("expected slice of Resource objects, received %T instead", r)
}
if len(rr) == 0 {