Skip to content

Commit a99a2c8

Browse files
committed
renamed
1 parent 8804914 commit a99a2c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httpclient/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ type ClientConfig struct {
7979
// RetryEligiableRequests when false bypasses any retry logic for a simpler request flow.
8080
RetryEligiableRequests bool `json:"retry_eligiable_requests"`
8181

82-
HTTPExecutor http.Client
82+
HTTP http.Client
8383
}
8484

8585
// BuildClient creates a new HTTP client with the provided configuration.
@@ -103,7 +103,7 @@ func (c *ClientConfig) Build() (*Client, error) {
103103

104104
c.Sugar.Debug("configuration valid")
105105

106-
httpClient := c.HTTPExecutor
106+
httpClient := c.HTTP
107107

108108
cookieJar, err := cookiejar.New(nil)
109109
if err != nil {

0 commit comments

Comments
 (0)