diff --git a/pkg/apis/certmanager/v1alpha1/types.go b/pkg/apis/certmanager/v1alpha1/types.go index c24e3d408..56c8f4c11 100644 --- a/pkg/apis/certmanager/v1alpha1/types.go +++ b/pkg/apis/certmanager/v1alpha1/types.go @@ -316,7 +316,7 @@ const ( // CertificateACMEStatus holds the status for an ACME issuer type CertificateACMEStatus struct { - Order ACMEOrderStatus `json:"order"` + Order ACMEOrderStatus `json:"order"` } type ACMEOrderStatus struct { diff --git a/pkg/issuer/acme/util.go b/pkg/issuer/acme/util.go index 7db641608..6ddca3257 100644 --- a/pkg/issuer/acme/util.go +++ b/pkg/issuer/acme/util.go @@ -2,8 +2,8 @@ package acme import ( "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1" - "github.com/jetstack/cert-manager/third_party/crypto/acme" "github.com/jetstack/cert-manager/pkg/util/pki" + "github.com/jetstack/cert-manager/third_party/crypto/acme" ) // This file includes some utility functions that can be used throughout the