Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
NiuBlibing committed Mar 15, 2024
1 parent 076aaae commit fa3d4b7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/object_store/src/object/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,11 +519,10 @@ impl ObjectStore for S3ObjectStore {
}
}
if !all_errors.is_empty() {
return Err(ObjectError::internal(
format!(
"DeleteObjects request returned exception for some objects: {:?}",
all_errors
)));
return Err(ObjectError::internal(format!(
"DeleteObjects request returned exception for some objects: {:?}",
all_errors
)));
}

Ok(())
Expand Down

0 comments on commit fa3d4b7

Please sign in to comment.