From ffadbd91c4a3f332b594a296f413d5c7e6a6c25d Mon Sep 17 00:00:00 2001 From: Shiloh Heurich Date: Thu, 29 Feb 2024 20:12:57 -0500 Subject: [PATCH] fix go lint errs --- va/va.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/va/va.go b/va/va.go index dc1e3f91..748e8f84 100644 --- a/va/va.go +++ b/va/va.go @@ -371,7 +371,7 @@ func (va VAImpl) validateDNSAccount01(task *vaTask) *core.ValidationRecord { } if len(txts) == 0 { - msg := fmt.Sprintf("No TXT records found for DNS challenge") + msg := "No TXT records found for DNS challenge" result.Error = acme.UnauthorizedProblem(msg) return result } @@ -388,7 +388,7 @@ func (va VAImpl) validateDNSAccount01(task *vaTask) *core.ValidationRecord { } } - msg := fmt.Sprintf("Correct value not found for DNS challenge") + msg := "Correct value not found for DNS challenge" result.Error = acme.UnauthorizedProblem(msg) return result }