mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-04-17 14:09:42 +02:00
do not fail on challenge in "processing" state (fixes #759)
This commit is contained in:
@@ -1061,7 +1061,7 @@ sign_csr() {
|
|||||||
|
|
||||||
reqstatus="$(echo "${result}" | get_json_string_value status)"
|
reqstatus="$(echo "${result}" | get_json_string_value status)"
|
||||||
|
|
||||||
while [[ "${reqstatus}" = "pending" ]]; do
|
while [[ "${reqstatus}" = "pending" ]] || [[ "${reqstatus}" = "processing" ]]; do
|
||||||
sleep 1
|
sleep 1
|
||||||
if [[ "${API}" -eq 2 ]]; then
|
if [[ "${API}" -eq 2 ]]; then
|
||||||
result="$(signed_request "${challenge_uris[${idx}]}" "" | jsonsh)"
|
result="$(signed_request "${challenge_uris[${idx}]}" "" | jsonsh)"
|
||||||
|
|||||||
Reference in New Issue
Block a user