Commit 4c188eae authored by CJ Cullen's avatar CJ Cullen

Change the extractRT to return a non-nil Response.

parent 26eab4d6
...@@ -3235,7 +3235,7 @@ type extractRT struct { ...@@ -3235,7 +3235,7 @@ type extractRT struct {
func (rt *extractRT) RoundTrip(req *http.Request) (*http.Response, error) { func (rt *extractRT) RoundTrip(req *http.Request) (*http.Response, error) {
rt.Header = req.Header rt.Header = req.Header
return nil, nil return &http.Response{}, nil
} }
// headersForConfig extracts any http client logic necessary for the provided // headersForConfig extracts any http client logic necessary for the provided
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment