Skip to content

Commit

Permalink
Fix GenerateCSR for private acm
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonbondon committed Aug 19, 2019
1 parent 3605b7b commit 313f866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/issuer/privateACM/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 313f866

Please sign in to comment.