Skip to content

Commit

Permalink
hold send() change as suggested by @tritone
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuscscp committed Sep 7, 2022
1 parent c26be4f commit c0bed43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gensupport/send.go
Expand Up @@ -64,7 +64,7 @@ func send(ctx context.Context, client *http.Client, req *http.Request) (*http.Re
if err != nil {
select {
case <-ctx.Done():
err = wrappedCallErr{ctx.Err(), err}
err = ctx.Err()
default:
}
}
Expand Down

0 comments on commit c0bed43

Please sign in to comment.