We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58c16e5 commit e09be05Copy full SHA for e09be05
1 file changed
libsql-wal/src/storage/backend/s3.rs
@@ -64,7 +64,11 @@ impl<IO: Io> S3Backend<IO> {
64
cluster_id: String,
65
io: IO,
66
) -> Result<Self> {
67
- let client = Client::new(&aws_config);
+ let config = aws_sdk_s3::Config::new(&aws_config)
68
+ .to_builder()
69
+ .force_path_style(true)
70
+ .build();
71
+ let client = Client::from_conf(config);
72
let config = S3Config {
73
bucket,
74
cluster_id,
0 commit comments