Skip to content

Commit c34e460

Browse files
authored
Merge pull request #919 from go-resty/fix-buffer-issue
fix: buffer reuse and back to pool and release v2.16.2
2 parents d598157 + 43d5eca commit c34e460

File tree

6 files changed

+12
-35
lines changed

6 files changed

+12
-35
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<p align="center"><a href="#features">Features</a> section describes in detail about Resty capabilities</p>
55
</p>
66
<p align="center">
7-
<p align="center"><a href="https://github.com/go-resty/resty/actions/workflows/ci.yml?query=branch%3Av2"><img src="https://github.com/go-resty/resty/actions/workflows/ci.yml/badge.svg?branch=v2" alt="Build Status"></a> <a href="https://app.codecov.io/gh/go-resty/resty/tree/v2"><img src="https://codecov.io/gh/go-resty/resty/branch/v2/graph/badge.svg" alt="Code Coverage"></a> <a href="https://goreportcard.com/report/go-resty/resty"><img src="https://goreportcard.com/badge/go-resty/resty" alt="Go Report Card"></a> <a href="https://github.com/go-resty/resty/releases/latest"><img src="https://img.shields.io/badge/version-2.16.1-blue.svg" alt="Release Version"></a> <a href="https://pkg.go.dev/github.com/go-resty/resty/v2"><img src="https://pkg.go.dev/badge/github.com/go-resty/resty" alt="GoDoc"></a> <a href="LICENSE"><img src="https://img.shields.io/github/license/go-resty/resty.svg" alt="License"></a> <a href="https://github.com/avelino/awesome-go"><img src="https://awesome.re/mentioned-badge.svg" alt="Mentioned in Awesome Go"></a></p>
7+
<p align="center"><a href="https://github.com/go-resty/resty/actions/workflows/ci.yml?query=branch%3Av2"><img src="https://github.com/go-resty/resty/actions/workflows/ci.yml/badge.svg?branch=v2" alt="Build Status"></a> <a href="https://app.codecov.io/gh/go-resty/resty/tree/v2"><img src="https://codecov.io/gh/go-resty/resty/branch/v2/graph/badge.svg" alt="Code Coverage"></a> <a href="https://goreportcard.com/report/go-resty/resty"><img src="https://goreportcard.com/badge/go-resty/resty" alt="Go Report Card"></a> <a href="https://github.com/go-resty/resty/releases/latest"><img src="https://img.shields.io/badge/version-2.16.2-blue.svg" alt="Release Version"></a> <a href="https://pkg.go.dev/github.com/go-resty/resty/v2"><img src="https://pkg.go.dev/badge/github.com/go-resty/resty" alt="GoDoc"></a> <a href="LICENSE"><img src="https://img.shields.io/github/license/go-resty/resty.svg" alt="License"></a> <a href="https://github.com/avelino/awesome-go"><img src="https://awesome.re/mentioned-badge.svg" alt="Mentioned in Awesome Go"></a></p>
88
</p>
99

1010
## News
1111

12-
* v2.16.1 [released](https://github.com/go-resty/resty/releases/tag/v2.16.1) and tagged on Nov 19, 2024.
12+
* v2.16.2 [released](https://github.com/go-resty/resty/releases/tag/v2.16.2) and tagged on Nov 21, 2024.
1313
* v2.0.0 [released](https://github.com/go-resty/resty/releases/tag/v2.0.0) and tagged on Jul 16, 2019.
1414
* v1.12.0 [released](https://github.com/go-resty/resty/releases/tag/v1.12.0) and tagged on Feb 27, 2019.
1515
* v1.0 released and tagged on Sep 25, 2017. - Resty's first version was released on Sep 15, 2015 then it grew gradually as a very handy and helpful library. Its been a two years since first release. I'm very thankful to Resty users and its [contributors](https://github.com/go-resty/resty/graphs/contributors).
@@ -105,7 +105,7 @@ Resty author also published following projects for Go Community.
105105

106106
```bash
107107
# Go Modules
108-
require github.com/go-resty/resty/v2 v2.16.1
108+
require github.com/go-resty/resty/v2 v2.16.2
109109
```
110110

111111
## Usage

client.go

-1
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,6 @@ func (c *Client) executeBefore(req *Request) error {
12361236
return wrapNoRetryErr(err)
12371237
}
12381238

1239-
req.RawRequest.Body = newRequestBodyReleaser(req.RawRequest.Body, req.bodyBuf)
12401239
return nil
12411240
}
12421241

request.go

+2
Original file line numberDiff line numberDiff line change
@@ -1030,6 +1030,7 @@ func (r *Request) Execute(method, url string) (*Response, error) {
10301030
r.Attempt = 1
10311031
resp, err = r.client.execute(r)
10321032
r.client.onErrorHooks(r, resp, unwrapNoRetryErr(err))
1033+
backToBufPool(r.bodyBuf)
10331034
return resp, unwrapNoRetryErr(err)
10341035
}
10351036

@@ -1059,6 +1060,7 @@ func (r *Request) Execute(method, url string) (*Response, error) {
10591060
}
10601061

10611062
r.client.onErrorHooks(r, resp, unwrapNoRetryErr(err))
1063+
backToBufPool(r.bodyBuf)
10621064
return resp, unwrapNoRetryErr(err)
10631065
}
10641066

request_test.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -2203,10 +2203,8 @@ func TestRequestGH917(t *testing.T) {
22032203
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
22042204
b, err := io.ReadAll(r.Body)
22052205
assertError(t, err)
2206-
if len(b) > 0 {
2207-
// sometimes, the body is "testtest" instead of "test"
2208-
assertEqual(t, "test", string(b))
2209-
}
2206+
assertEqual(t, "test", string(b))
2207+
22102208
w.WriteHeader(http.StatusInternalServerError)
22112209
}))
22122210

resty.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// Version # of resty
17-
const Version = "2.16.1"
17+
const Version = "2.16.2"
1818

1919
// New method creates a new Resty client.
2020
func New() *Client {

util.go

+4-26
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import (
1919
"runtime"
2020
"sort"
2121
"strings"
22-
"sync"
2322
)
2423

2524
//‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
@@ -297,38 +296,17 @@ func acquireBuffer() *bytes.Buffer {
297296

298297
func releaseBuffer(buf *bytes.Buffer) {
299298
if buf != nil {
299+
buf.Reset()
300300
bufPool.Put(buf)
301301
}
302302
}
303303

304-
// requestBodyReleaser wraps requests's body and implements custom Close for it.
305-
// The Close method closes original body and releases request body back to sync.Pool.
306-
type requestBodyReleaser struct {
307-
releaseOnce sync.Once
308-
reqBuf *bytes.Buffer
309-
io.ReadCloser
310-
}
311-
312-
func newRequestBodyReleaser(respBody io.ReadCloser, reqBuf *bytes.Buffer) io.ReadCloser {
313-
if reqBuf == nil {
314-
return respBody
315-
}
316-
317-
return &requestBodyReleaser{
318-
reqBuf: reqBuf,
319-
ReadCloser: respBody,
304+
func backToBufPool(buf *bytes.Buffer) {
305+
if buf != nil {
306+
bufPool.Put(buf)
320307
}
321308
}
322309

323-
func (rr *requestBodyReleaser) Close() error {
324-
err := rr.ReadCloser.Close()
325-
rr.releaseOnce.Do(func() {
326-
releaseBuffer(rr.reqBuf)
327-
})
328-
329-
return err
330-
}
331-
332310
func closeq(v interface{}) {
333311
if c, ok := v.(io.Closer); ok {
334312
silently(c.Close())

0 commit comments

Comments
 (0)