Compare commits

...

1 commit

Author SHA1 Message Date
Carl Tashian
7a6f3f5ea1
Clarify error when root certificate is not found 2023-02-08 11:39:44 -08:00

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