We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StorageError::NotFound error is not produced by error handlers https://github.com/delta-io/delta-rs/blob/main/rust/src/storage/mod.rs#L222 due to upstream issue rusoto/rusoto#716 where HeadObjectError::NoSuchKey is not returned as expected for missing object.
StorageError::NotFound
HeadObjectError::NoSuchKey
I reproduced issue only with head_obj call. It seems that rusoto tries to parse response body for HEAD call, however it is empty
head_obj
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
StorageError::NotFound
error is not produced by error handlers https://github.com/delta-io/delta-rs/blob/main/rust/src/storage/mod.rs#L222 due to upstream issue rusoto/rusoto#716 whereHeadObjectError::NoSuchKey
is not returned as expected for missing object.I reproduced issue only with
head_obj
call. It seems that rusoto tries to parse response body for HEAD call, however it is emptyThe text was updated successfully, but these errors were encountered: