Ignore io.Copy when first param is ioutil.Discard
judwhite opened this issue · 1 comments
judwhite commented
I have this code as part of handling an HTTP call with a non 2xx status code, and in this case I don't care about the content but need to drain the buffer for keep-alive reasons:
io.Copy(ioutil.Discard, resp.Body)
Questions:
- Is it reasonable to ignore an error returned from
io.Copy(ioutil.Discard, ...)
? If not, I'm happy to learn why not. - I noticed there's a way to ignore certain functions only if the first parameter is
os.Stdout
oros.Stderr
. In the excludes file,io.Copy
does ignore the missing error check, but that's a bit broad. I triedio.Copy(ioutil.Discard)
andio.Copy(io/ioutil.Discard)
to mimic the other first-parameter behavior but neither of these produced the desired results.
I don't want to ignore ALL io.Copy
errors, but I don't even know what else I'd do here since the function is about to return another error anyway.
Do you think this is worth adding? If so, do you think you think this is a good first issue? Thanks!
judwhite commented
Solved with grep -v
😄