avantgardnerio commented on code in PR #6794:
URL: https://github.com/apache/arrow-rs/pull/6794#discussion_r1868447705


##########
object_store/src/aws/client.rs:
##########
@@ -645,9 +670,13 @@ impl S3Client {
     ) -> Result<PartId> {
         let is_copy = matches!(data, PutPartPayload::Copy(_));
         let part = (part_idx + 1).to_string();
+        let config = S3Config {
+            checksum: Some(Checksum::SHA256),
+            ..self.config.clone()
+        };

Review Comment:
   Put multipart won't pass on object locked buckets without it, so I figured 
may as well just always add it, lest we have more plumbing (which is also fine 
with me) to selectively enable it.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to