Skip to content

Commit

Permalink
Fix put_object_stream sync for small files (#357)
Browse files Browse the repository at this point in the history
Closes #342
  • Loading branch information
jsurkont committed Oct 15, 2023
1 parent d7985d6 commit ea3de75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3/src/bucket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ impl Bucket {
// Files is not big enough for multipart upload, going with regular put_object
self.abort_upload(&path, upload_id)?;

self.put_object(s3_path, chunk.as_slice())?;
return Ok(self.put_object(s3_path, chunk.as_slice())?.status_code());
} else {
part_number += 1;
let part = self.put_multipart_chunk(
Expand Down

0 comments on commit ea3de75

Please sign in to comment.