Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gojek/heimdall
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.2
Choose a base ref
...
head repository: gojek/heimdall
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.0.3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 5, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eb0cd5a View commit details

Commits on Apr 5, 2024

  1. Merge pull request #122 from Matias-Barrios/reuse_connection

    [Enhance] Reuse http client connections
    gwthm-in authored Apr 5, 2024
    Copy the full SHA
    020e42a View commit details
Showing with 0 additions and 2 deletions.
  1. +0 −2 httpclient/client.go
2 changes: 0 additions & 2 deletions httpclient/client.go
Original file line number Diff line number Diff line change
@@ -122,8 +122,6 @@ func (c *Client) Delete(url string, headers http.Header) (*http.Response, error)

// Do makes an HTTP request with the native `http.Do` interface
func (c *Client) Do(request *http.Request) (*http.Response, error) {
request.Close = true

var bodyReader *bytes.Reader

if request.Body != nil {