Skip to content

Commit

Permalink
Merge pull request #279 from mihaigalos/fix/s3
Browse files Browse the repository at this point in the history
fix: S3 - API breakage
  • Loading branch information
mihaigalos committed Aug 31, 2024
2 parents 10e178e + 4e2b52d commit 33d769b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl S3 {
let bucket = Bucket::new(bucket, backend.region, backend.credentials)
.unwrap()
.with_path_style();
(io, bucket)
(io, *bucket)
}

fn get_credentials(parsed_address: &ParsedAddress, silent: bool) -> (String, String) {
Expand Down Expand Up @@ -575,7 +575,7 @@ mod test_mixins {

let mut file = OpenOptions::new()
.create(true)

.append(true)
.open(untildify("~/.aws/credentials"))
.unwrap();
Expand Down Expand Up @@ -611,7 +611,7 @@ mod test_mixins {

let mut file = OpenOptions::new()
.create(true)

.append(true)
.open(untildify("~/.aws/credentials"))
.unwrap();
Expand Down

0 comments on commit 33d769b

Please sign in to comment.