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


##########
object_store/src/aws/client.rs:
##########
@@ -669,8 +672,13 @@ impl S3Client {
             request = request.with_encryption_headers();
         }
         let response = request.send().await?;
+        let checksum = response
+            .headers()
+            .get(SHA256_CHECKSUM)
+            .and_then(|v| v.to_str().ok())

Review Comment:
   Do we need to unwind these errors or swallow them?



-- 
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