Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ludydoo committed Jun 28, 2023
1 parent b839883 commit 820887e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pkg/reconciler/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -1003,11 +1003,7 @@ func (r *Reconciler) getPostRenderer(ctx context.Context, obj *unstructured.Unst
Obj: obj,
Vals: vals,
}
postRenderer, err := r.postRendererFn(ctx, postRendererContext)
if err != nil {
return nil, err
}
return postRenderer, nil
return r.postRendererFn(ctx, postRendererContext)
}

func (r *Reconciler) appendInstallPostRendererOption(ctx context.Context, obj *unstructured.Unstructured, opts []helmclient.InstallOption, vals map[string]interface{}) ([]helmclient.InstallOption, error) {
Expand Down

0 comments on commit 820887e

Please sign in to comment.