Clarify error when root certificate is not found

pull/1261/head
Carl Tashian 1 year ago
parent 03cb74a449
commit 7a6f3f5ea1
No known key found for this signature in database

@ -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…
Cancel
Save