mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-18 01:16:53 +01: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)"
|
||||
|
||||
while [[ "${reqstatus}" = "pending" ]]; do
|
||||
while [[ "${reqstatus}" = "pending" ]] || [[ "${reqstatus}" = "processing" ]]; do
|
||||
sleep 1
|
||||
if [[ "${API}" -eq 2 ]]; then
|
||||
result="$(signed_request "${challenge_uris[${idx}]}" "" | jsonsh)"
|
||||
|
||||
Reference in New Issue
Block a user