jkosh44-datadog commented on PR #7301:
URL: https://github.com/apache/arrow-rs/pull/7301#issuecomment-2737522856

   > FWIW in the past the choice of SSL library has had an impact on this 
behaviour, I seem to remember a bug like this only being reproducible when 
using openssl instead of rustls
   
   I'm not entirely sure how to validate what SSL library I'm using, but I made 
the following changes and re-ran my test but it still worked (the 
`rt-multi-thread` feature was needed for my test to run):
   ```
   diff --git a/object_store/Cargo.toml b/object_store/Cargo.toml
   index 8370cd53..ed73aeef 100644
   --- a/object_store/Cargo.toml
   +++ b/object_store/Cargo.toml
   @@ -53,13 +53,14 @@ hyper = { version = "1.2", default-features = false, 
optional = true }
    md-5 = { version = "0.10.6", default-features = false, optional = true }
    quick-xml = { version = "0.37.0", features = ["serialize", 
"overlapped-lists"], optional = true }
    rand = { version = "0.8", default-features = false, features = ["std", 
"std_rng"], optional = true }
   -reqwest = { version = "0.12", default-features = false, features = 
["rustls-tls-native-roots", "http2"], optional = true }
   +reqwest = { version = "0.12", default-features = false, features = 
["native-tls", "http2"], optional = true }
    ring = { version = "0.17", default-features = false, features = ["std"], 
optional = true }
    rustls-pemfile = { version = "2.0", default-features = false, features = 
["std"], optional = true }
    serde = { version = "1.0", default-features = false, features = ["derive"], 
optional = true }
    serde_json = { version = "1.0", default-features = false, features = 
["std"], optional = true }
    serde_urlencoded = { version = "0.7", optional = true }
   -tokio = { version = "1.29.0", features = ["sync", "macros", "rt", "time", 
"io-util"] }
   +tokio = { version = "1.29.0", features = ["sync", "macros", "rt", "time", 
"io-util", "rt-multi-thread"] }
   +openssl = "0.10"
   ```


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