1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-20 21:18:36 +02:00

Added 'processing' status as valid challenge status (#561)

This commit is contained in:
nelsonkram 2018-05-31 11:22:37 -04:00 committed by xenolf
parent fefeb24353
commit f17b1ce516

View File

@ -822,6 +822,7 @@ func validate(j *jws, domain, uri string, c challenge) error {
log.Printf("[INFO][%s] The server validated our request", domain)
return nil
case "pending":
case "processing":
case "invalid":
return handleChallengeError(chlng)
default: