From e06e208f9bc7dcaeca0fa3de8c2f73d258bed33e Mon Sep 17 00:00:00 2001 From: Charlie Haley <27928201+charlie-haley@users.noreply.github.com> Date: Sat, 28 Aug 2021 00:15:07 +0100 Subject: [PATCH] fix typo in error message Signed-off-by: Charlie Haley <27928201+charlie-haley@users.noreply.github.com> --- pkg/issuer/acme/dns/cloudflare/cloudflare.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/issuer/acme/dns/cloudflare/cloudflare.go b/pkg/issuer/acme/dns/cloudflare/cloudflare.go index 11eaa8497..cf42f7b6c 100644 --- a/pkg/issuer/acme/dns/cloudflare/cloudflare.go +++ b/pkg/issuer/acme/dns/cloudflare/cloudflare.go @@ -126,7 +126,7 @@ func FindNearestZoneForFQDN(c DNSProviderType, fqdn string) (DNSZone, error) { } nextName = string([]rune(nextName)[from:to]) } - return DNSZone{}, fmt.Errorf("Found no Zones for domain %s (neither in the sub-domain noir in the SLD) please make sure your domain-entries in the config are correct and the API is correctly setup with Zone.read rights.", fqdn) + return DNSZone{}, fmt.Errorf("Found no Zones for domain %s (neither in the sub-domain nor in the SLD) please make sure your domain-entries in the config are correct and the API key is correctly setup with Zone.read rights.", fqdn) } // Present creates a TXT record to fulfil the dns-01 challenge