We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52b7d93 commit 5782686Copy full SHA for 5782686
1 file changed
libsql-wal/src/storage/backend/s3.rs
@@ -80,7 +80,9 @@ impl<IO: Io> S3Backend<IO> {
80
};
81
82
let bucket_config = CreateBucketConfiguration::builder()
83
- .location_constraint(aws_sdk_s3::types::BucketLocationConstraint::from_str(®ion.to_string()).unwrap())
+ .location_constraint(
84
+ aws_sdk_s3::types::BucketLocationConstraint::from_str(®ion.to_string()).unwrap(),
85
+ )
86
.build();
87
88
// TODO: we may need to create the bucket for config overrides. Maybe try lazy bucket
0 commit comments