Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
avantgardnerio committed Dec 9, 2024
1 parent 06bd90f commit 5dadb25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions object_store/src/aws/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,15 +617,15 @@ impl S3Client {
location: &Path,
opts: PutMultipartOpts,
) -> Result<MultipartId> {
let mut reqquest = self.request(Method::POST, location);
let mut request = self.request(Method::POST, location);
if let Some(algorithm) = self.config.checksum {
match algorithm {
Checksum::SHA256 => {
reqquest = reqquest.header(ALGORITHM, "SHA256");
request = request.header(ALGORITHM, "SHA256");
}
}
}
let response = reqquest
let response = request
.query(&[("uploads", "")])
.with_encryption_headers()
.with_attributes(opts.attributes)
Expand Down

0 comments on commit 5dadb25

Please sign in to comment.