We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8804914 commit a99a2c8Copy full SHA for a99a2c8
httpclient/client.go
@@ -79,7 +79,7 @@ type ClientConfig struct {
79
// RetryEligiableRequests when false bypasses any retry logic for a simpler request flow.
80
RetryEligiableRequests bool `json:"retry_eligiable_requests"`
81
82
- HTTPExecutor http.Client
+ HTTP http.Client
83
}
84
85
// BuildClient creates a new HTTP client with the provided configuration.
@@ -103,7 +103,7 @@ func (c *ClientConfig) Build() (*Client, error) {
103
104
c.Sugar.Debug("configuration valid")
105
106
- httpClient := c.HTTPExecutor
+ httpClient := c.HTTP
107
108
cookieJar, err := cookiejar.New(nil)
109
if err != nil {
0 commit comments