alamb commented on code in PR #6843:
URL: https://github.com/apache/arrow-rs/pull/6843#discussion_r1873461840


##########
object_store/src/client/mod.rs:
##########
@@ -671,6 +671,10 @@ impl ClientOptions {
             builder = builder.danger_accept_invalid_certs(true)
         }
 
+        // Reqwest will remove the `Content-Length` header if it is configured 
to
+        // transparently decompress the body via the non-default `gzip` 
feature.
+        builder = builder.no_gzip();

Review Comment:
   does this mean that gzipped data content will be left gzipped?
   
   So if I request a resource that the server gzip's in response, that the 
result I get from `ObjectStore::get` would also be gzipped 🤔 



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