Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
k3d/vendor/github.com/heroku/docker-registry-client/registry/errortransport.go

46 lines
1006 B

package registry
import (
"fmt"
"io/ioutil"
"net/http"
)
type HTTPStatusError struct {
Response *http.Response
// Copied from `Response.Body` to avoid problems with unclosed bodies later.
// Nobody calls `err.Response.Body.Close()`, ever.
Body []byte
}
func (err *HTTPStatusError) Error() string {
return fmt.Sprintf("http: non-successful response (status=%v body=%q)", err.Response.StatusCode, err.Body)
}
var _ error = &HTTPStatusError{}
type ErrorTransport struct {
Transport http.RoundTripper
}
func (t *ErrorTransport) RoundTrip(request *http.Request) (*http.Response, error) {
resp, err := t.Transport.RoundTrip(request)
if err != nil {
return resp, err
}
if resp.StatusCode >= 400 {
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("http: failed to read response body (status=%v, err=%q)", resp.StatusCode, err)
}
return nil, &HTTPStatusError{
Response: resp,
Body: body,
}
}
return resp, err
}