From 4355273aad68b82c02efdbf3a6a3b5935498208b Mon Sep 17 00:00:00 2001 From: pleasedontbreak123 Date: Thu, 22 Jan 2026 19:33:02 +0800 Subject: [PATCH] fix s3_compatible upload fail --- io-orbit/src/factory.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/io-orbit/src/factory.rs b/io-orbit/src/factory.rs index 70f589a8a..5fc770de6 100644 --- a/io-orbit/src/factory.rs +++ b/io-orbit/src/factory.rs @@ -84,6 +84,7 @@ async fn build_s3_compatible( .with_access_key_id(&s3_cfg.access_key_id) .with_secret_access_key(&s3_cfg.secret_access_key) .with_endpoint(&s3_cfg.endpoint_url) + .with_allow_http(true) .with_virtual_hosted_style_request(false) .build() .map_err(|e| MegaError::Other(e.to_string()))?;