diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go index c18de810..d9f03df1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -179,9 +179,9 @@ func (r *PolicySetCollectionGetPolicySetsRequest) Paging(ctx context.Context, me } var values []PolicySet for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -194,6 +194,7 @@ func (r *PolicySetCollectionGetPolicySetsRequest) Paging(ctx context.Context, me value []PolicySet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } |