From 313f866a64b8f947e409dde3bad2f9f4148aac01 Mon Sep 17 00:00:00 2001 From: Artem Yarmoluk Date: Mon, 19 Aug 2019 17:29:17 +0300 Subject: [PATCH] Fix GenerateCSR for private acm --- pkg/issuer/privateACM/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/issuer/privateACM/issue.go b/pkg/issuer/privateACM/issue.go index f681a582dfa..e559cbdea6e 100644 --- a/pkg/issuer/privateACM/issue.go +++ b/pkg/issuer/privateACM/issue.go @@ -74,7 +74,7 @@ func (a *PrivateACM) Issue(ctx context.Context, crt *v1alpha1.Certificate) (*iss /// BEGIN building CSR // TODO: we should probably surface some of these errors to users - template, err := pki.GenerateCSR(a.issuer, crt) + template, err := pki.GenerateCSR(crt) if err != nil { return nil, err }