Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit df94ce5

Browse files
authored
Stop retriable request from adding a non-nil Body (#726)
When azure is responding with an error the retriable request that is generated ends up getting a non nil noOpcloser added to it with a reader interface. Ultimately this ends up sending a GET request to Azure that has a post body. As the http spec says that the body SHOULD be ignored this is not a critical error, but for people using custom transports this is problematic. It's also sending unessecary bytes.
1 parent d3f8f8a commit df94ce5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

autorest/retriablerequest_1.7.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type RetriableRequest struct {
3333
func (rr *RetriableRequest) Prepare() (err error) {
3434
// preserve the request body; this is to support retry logic as
3535
// the underlying transport will always close the reqeust body
36-
if rr.req.Body != nil {
36+
if rr.req.Body != nil && rr.req.Body != http.NoBody {
3737
if rr.br != nil {
3838
_, err = rr.br.Seek(0, 0 /*io.SeekStart*/)
3939
rr.req.Body = io.NopCloser(rr.br)

autorest/retriablerequest_1.8.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type RetriableRequest struct {
3434
func (rr *RetriableRequest) Prepare() (err error) {
3535
// preserve the request body; this is to support retry logic as
3636
// the underlying transport will always close the reqeust body
37-
if rr.req.Body != nil {
37+
if rr.req.Body != nil && rr.req.Body != http.NoBody {
3838
if rr.rc != nil {
3939
rr.req.Body = rr.rc
4040
} else if rr.br != nil {

0 commit comments

Comments
 (0)