Skip to content

Commit

Permalink
Remove Println on 5xx errors in Do method (gojek#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
vthiery authored and rShetty committed Jun 11, 2018
1 parent 6494102 commit f19a05c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion http_client.go
Expand Up @@ -150,7 +150,6 @@ func (c *httpClient) Do(request *http.Request) (*http.Response, error) {

backoffTime := c.retrier.NextInterval(i)
time.Sleep(backoffTime)
fmt.Println("R: ", response.StatusCode)
continue
}

Expand Down

0 comments on commit f19a05c

Please sign in to comment.