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 12, 2022
1 parent b244d96 commit c2ec69f
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 c2ec69f

Please sign in to comment.