@@ -19,7 +19,7 @@ import (
19
19
"context"
20
20
"encoding/json"
21
21
"fmt"
22
- "io/ioutil "
22
+ "io"
23
23
"net/http"
24
24
"net/url"
25
25
"strings"
@@ -318,11 +318,11 @@ func (f Future) GetResult(sender autorest.Sender) (*http.Response, error) {
318
318
if err == nil && resp .Body != nil {
319
319
// copy the body and close it so callers don't have to
320
320
defer resp .Body .Close ()
321
- b , err := ioutil .ReadAll (resp .Body )
321
+ b , err := io .ReadAll (resp .Body )
322
322
if err != nil {
323
323
return resp , err
324
324
}
325
- resp .Body = ioutil .NopCloser (bytes .NewReader (b ))
325
+ resp .Body = io .NopCloser (bytes .NewReader (b ))
326
326
}
327
327
return resp , err
328
328
}
@@ -459,12 +459,12 @@ func (pt *pollingTrackerBase) updateRawBody() error {
459
459
pt .rawBody = map [string ]interface {}{}
460
460
if pt .resp .ContentLength != 0 {
461
461
defer pt .resp .Body .Close ()
462
- b , err := ioutil .ReadAll (pt .resp .Body )
462
+ b , err := io .ReadAll (pt .resp .Body )
463
463
if err != nil {
464
464
return autorest .NewErrorWithError (err , "pollingTrackerBase" , "updateRawBody" , nil , "failed to read response body" )
465
465
}
466
466
// put the body back so it's available to other callers
467
- pt .resp .Body = ioutil .NopCloser (bytes .NewReader (b ))
467
+ pt .resp .Body = io .NopCloser (bytes .NewReader (b ))
468
468
// observed in 204 responses over HTTP/2.0; the content length is -1 but body is empty
469
469
if len (b ) == 0 {
470
470
return nil
@@ -516,11 +516,11 @@ func (pt *pollingTrackerBase) updateErrorFromResponse() {
516
516
re := respErr {}
517
517
defer pt .resp .Body .Close ()
518
518
var b []byte
519
- if b , err = ioutil .ReadAll (pt .resp .Body ); err != nil {
519
+ if b , err = io .ReadAll (pt .resp .Body ); err != nil {
520
520
goto Default
521
521
}
522
522
// put the body back so it's available to other callers
523
- pt .resp .Body = ioutil .NopCloser (bytes .NewReader (b ))
523
+ pt .resp .Body = io .NopCloser (bytes .NewReader (b ))
524
524
if len (b ) == 0 {
525
525
goto Default
526
526
}
0 commit comments