Clarify error when root certificate is not found

This commit is contained in:
Carl Tashian 2023-02-08 11:39:44 -08:00
parent 03cb74a449
commit 7a6f3f5ea1
No known key found for this signature in database

View file

@ -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