From: Fredrik Tolf Date: Tue, 9 Nov 2021 21:07:58 +0000 (+0100) Subject: acmecer: Accept "pending" challenge status after submission. X-Git-Url: http://www.dolda2000.com/gitweb/?p=utils.git;a=commitdiff_plain;h=db705a3bf369010df8104480494b25cc3381710f acmecer: Accept "pending" challenge status after submission. --- diff --git a/acmecert b/acmecert index dfc5ae3..9cf9b6a 100755 --- a/acmecert +++ b/acmecert @@ -248,6 +248,10 @@ def authorder(acct, htconf, orderid): resp, headers = jreq(ch["url"], {}, acct) if resp["status"] == "processing": time.sleep(2) + elif resp["status"] == "pending": + # I don't think this should happen, but it + # does. LE bug? Anyway, just retry. + break elif resp["status"] == "valid": break else: