From 819d503a66af605ff503b93993b0632bead69f1f Mon Sep 17 00:00:00 2001 From: Joseph Date: Fri, 28 Feb 2025 12:51:12 +0000 Subject: [PATCH] Rename --- httpclient/client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpclient/client.go b/httpclient/client.go index d4ff513..abef88d 100644 --- a/httpclient/client.go +++ b/httpclient/client.go @@ -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. @@ -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 {