You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current, there is no S3 suppor on the monoio runtime, implementing remotes::http::HttpClient for monoio https client over hypter-tls should be a possible way.
The text was updated successfully, but these errors were encountered:
Running a minimal test to connect to the Umbra open satellite imagery S3 bucket, behind HTTPS, seems to succeed.
use monoio_http_client::Client;
#[monoio::main(enable_timer = true)]
async fn main() {
let client = Client::default();
let resp = client
.get("https://umbra-open-data-catalog.s3.amazonaws.com/")
.send()
.await
.expect("request fail");
let http_resp = resp.bytes().await.unwrap();
println!("{:?}", http_resp);
}
However, it's possible that there is a better pathway, e.g. writing custom executors over hyper-tls that maybe leads to more code sharing between the monoio and tokio-uring impls
In the current, there is no S3 suppor on the monoio runtime, implementing
remotes::http::HttpClient
for monoio https client over hypter-tls should be a possible way.The text was updated successfully, but these errors were encountered: