mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fixed golint
Signed-off-by: raffaelespazzoli <raffaele.spazzoli@gmail.com>
This commit is contained in:
parent
a62ba04962
commit
fa643cfa31
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ func getDynamicClientOnKind(apiversion string, kind string, config *rest.Config)
|
|||
apiRes, err := getAPIReourceForGVK(gvk, config)
|
||||
if err != nil {
|
||||
log.Printf("[ERROR] unable to get apiresource from unstructured: %s , error %s", gvk.String(), err)
|
||||
return nil, false, errors.Wrapf(err, "unable to get apiresource from unstructured: %s , error %s", gvk.String())
|
||||
return nil, false, errors.Wrapf(err, "unable to get apiresource from unstructured: %s", gvk.String())
|
||||
}
|
||||
gvr := schema.GroupVersionResource{
|
||||
Group: apiRes.Group,
|
||||
|
|
|
|||
Loading…
Reference in a new issue