fix: the If-None-Match error handling in the complete_multipart_uploa… (#1065)
Co-authored-by: houseme <[email protected]> Co-authored-by: loverustfs <[email protected]>
This commit is contained in:
co-authored by
houseme
loverustfs
parent
7c98c62d60
commit
8de8172833
@@ -3902,7 +3902,7 @@ impl S3 for FS {
|
||||
}
|
||||
}
|
||||
Err(err) => {
|
||||
if !is_err_object_not_found(&err) || !is_err_version_not_found(&err) {
|
||||
if !is_err_object_not_found(&err) && !is_err_version_not_found(&err) {
|
||||
return Err(ApiError::from(err).into());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user