Skip to content

Commit

Permalink
S-108582 Make the method public
Browse files Browse the repository at this point in the history
  • Loading branch information
jberta-agency04 committed May 3, 2024
1 parent 077c4bd commit 9e7b74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http/http_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (httpClient *HttpClient) sendRequestWithCustomHeaders(ctx context.Context,
}

// doSendHttpRequest sends an HTTP request with a custom configuration and headers, returns whole HTTP response.
func (httpClient *HttpClient) doSendHttpRequest(ctx context.Context, config *RequestConfig) (*http.Response, error) {
func (httpClient *HttpClient) DoSendHttpRequest(ctx context.Context, config *RequestConfig) (*http.Response, error) {
client := httpClient.client
if client == nil {
return nil, fmt.Errorf("http client is uninitialized")
Expand Down

0 comments on commit 9e7b74c

Please sign in to comment.