Skip to content

Commit

Permalink
Fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Sep 23, 2024
1 parent 5bb373c commit 8aae1ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/s3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ where
{
let mut auth = SimpleAuth::new();
auth.register(
access_key.expose_secret().clone(),
secret_key.expose_secret().clone(),
access_key.expose_secret().to_owned(),
secret_key.expose_secret().to_owned(),
);

let mut s3 = S3Service::new(S3(storage));
Expand Down

0 comments on commit 8aae1ec

Please sign in to comment.