You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maybe a feature request for future, should we have a set of default opt-outs inbuilt, like don't wrap `io.EOF` when being returned from `Read`? (It's not perfect, but seems like it's never correct to wrap an EOF error from `Read`)
We should consider a built-in list of ignores.
These will be pretty simplistic since we don't use type information (yet).
We already have an exclusion for Unwrap() error methods.
This issue is to track both, the feature and what should be in the exclusions initially:
io.EOF returned from a Read() (int, error) method
The text was updated successfully, but these errors were encountered:
I just ran into this and wondered why IO code stopped functioning with my Readers, after running the CLI instrumentation tool. This would be very helpful, even if it's not perfect
From:
Originally posted by @prashantv in #57 (comment)
We should consider a built-in list of ignores.
These will be pretty simplistic since we don't use type information (yet).
We already have an exclusion for
Unwrap() error
methods.This issue is to track both, the feature and what should be in the exclusions initially:
io.EOF
returned from aRead() (int, error)
methodThe text was updated successfully, but these errors were encountered: