Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeker12 committed Feb 28, 2025
1 parent 8804914 commit 819d503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions httpclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ type ClientConfig struct {
// RetryEligiableRequests when false bypasses any retry logic for a simpler request flow.
RetryEligiableRequests bool `json:"retry_eligiable_requests"`

HTTPExecutor http.Client
HTTP http.Client
}

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

c.Sugar.Debug("configuration valid")

httpClient := c.HTTPExecutor
httpClient := c.HTTP

cookieJar, err := cookiejar.New(nil)
if err != nil {
Expand Down

0 comments on commit 819d503

Please sign in to comment.