Skip to content

Commit 313f866

Browse files
committed
Fix GenerateCSR for private acm
1 parent 3605b7b commit 313f866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/issuer/privateACM/issue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func (a *PrivateACM) Issue(ctx context.Context, crt *v1alpha1.Certificate) (*iss
7474

7575
/// BEGIN building CSR
7676
// TODO: we should probably surface some of these errors to users
77-
template, err := pki.GenerateCSR(a.issuer, crt)
77+
template, err := pki.GenerateCSR(crt)
7878
if err != nil {
7979
return nil, err
8080
}

0 commit comments

Comments
 (0)