Browse Source
Merge pull request #2657 from gildea/master
Return failure when falling through limiting loop
shebang
neil
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
2 deletions
-
acme.sh
|
@ -2040,8 +2040,10 @@ _send_signed_request() { |
|
|
continue |
|
|
continue |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
break |
|
|
|
|
|
|
|
|
return 0 |
|
|
done |
|
|
done |
|
|
|
|
|
_info "Giving up sending to CA server after $MAX_REQUEST_RETRY_TIMES retries." |
|
|
|
|
|
return 1 |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -3819,9 +3821,11 @@ _check_dns_entries() { |
|
|
_sleep 10 |
|
|
_sleep 10 |
|
|
else |
|
|
else |
|
|
_info "All success, let's return" |
|
|
_info "All success, let's return" |
|
|
break |
|
|
|
|
|
|
|
|
return 0 |
|
|
fi |
|
|
fi |
|
|
done |
|
|
done |
|
|
|
|
|
_info "Timed out waiting for DNS." |
|
|
|
|
|
return 1 |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|