Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
roeap committed Jan 4, 2024
1 parent f8aa334 commit 9ccc92b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion object_store/src/azure/credential.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl AzureSigner {
let (str_to_sign, query_pairs) = match &self.delegation_key {
Some(delegation_key) => string_to_sign_user_delegation_sas(
url,
&method,
method,
&self.account,
&self.start,
&self.end,
Expand Down
2 changes: 1 addition & 1 deletion object_store/src/azure/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ impl Signer for MicrosoftAzure {
let signer = self.client.signer(expires_in).await?;
for path in paths {
let mut url = self.path_url(path);
signer.sign(&method, &mut url)?;
signer.sign(method, &mut url)?;
urls.push(url);
}
Ok(urls)
Expand Down

0 comments on commit 9ccc92b

Please sign in to comment.