forked from TrueCloudLab/certificates
Clarify error when root certificate is not found
This commit is contained in:
parent
03cb74a449
commit
7a6f3f5ea1
1 changed files with 4 additions and 0 deletions
|
@ -671,6 +671,10 @@ retry:
|
|||
if err != nil {
|
||||
return nil, clientError(err)
|
||||
}
|
||||
if resp.StatusCode == 404 {
|
||||
defer resp.Body.Close()
|
||||
return nil, errs.BadRequest("a root certificate with that fingerprint was not found")
|
||||
}
|
||||
if resp.StatusCode >= 400 {
|
||||
if !retried && c.retryOnError(resp) { //nolint:contextcheck // deeply nested context; retry using the same context
|
||||
retried = true
|
||||
|
|
Loading…
Reference in a new issue