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
convertMinioError: stop shadowing minio error with os.ErrNotExist (#31)
* convertMinioError: stop shadowing minio error with os.ErrNotFound
`convertMinioError` would ignore the actual error and return `os.ErrNotFound` when the StatusCode field of minio error is 404.
Now, `os.ErrNotFound` and the minio error are wrapped together, allowing to propagate the original meaning of the error.
* convertMinioError: wrap only one err, differentiate call from doList
* convertMinioError: keep more readable `err` variable instead of `e`
0 commit comments