We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea4b64 commit a44ed43Copy full SHA for a44ed43
server/src/storage/s3.rs
@@ -137,6 +137,7 @@ impl ObjectStorageProvider for S3Config {
137
let config = aws_sdk_s3::Config::builder()
138
.region(region)
139
.endpoint_url(uri)
140
+ .force_path_style(true)
141
.credentials_provider(creds)
142
.retry_config(RetryConfig::standard().with_max_attempts(5))
143
.sleep_impl(default_async_sleep().expect("sleep impl is provided for tokio rt"))
0 commit comments