Skip to content

Commit 1f6d133

Browse files
removed errant std fmt use
1 parent 5781972 commit 1f6d133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/security_keyvault/src/certificate.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ impl<'a, T: TokenCredential> CertificateClient<'a, T> {
248248

249249
let mut uri = self.vault_url.clone();
250250
uri.set_path("certificates");
251-
uri.set_query(Some(&API_VERSION_PARAM));
251+
uri.set_query(Some(API_VERSION_PARAM));
252252

253253
loop {
254254
let resp_body = self.get_authed(uri.to_string()).await?;
@@ -310,7 +310,7 @@ impl<'a, T: TokenCredential> CertificateClient<'a, T> {
310310

311311
let mut uri = self.vault_url.clone();
312312
uri.set_path(&format!("certificates/{}/versions", name));
313-
uri.set_query(Some(&API_VERSION_PARAM));
313+
uri.set_query(Some(API_VERSION_PARAM));
314314

315315
loop {
316316
let resp_body = self.get_authed(uri.to_string()).await?;

0 commit comments

Comments
 (0)