From 6bd7f505e1ff0a44a3a57732651473235a2a4161 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Tue, 16 Aug 2016 14:00:17 -0600 Subject: [PATCH] Log when skipping challenges due to valid authz --- acme/client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/acme/client.go b/acme/client.go index 622403f4..5eae8d26 100644 --- a/acme/client.go +++ b/acme/client.go @@ -510,7 +510,8 @@ func (c *Client) solveChallenges(challenges []authorizationResource) map[string] failures := make(map[string]error) for _, authz := range challenges { if authz.Body.Status == "valid" { - // Boulder might recycle already-valid authz, see issue #267 + // Boulder might recycle recent validated authz (see issue #267) + logf("[INFO][%s] acme: Authorization already valid; skipping challenge", authz.Domain) continue } // no solvers - no solving