From 2443d0668e31667567227b837d486c6e06d49912 Mon Sep 17 00:00:00 2001 From: Luca BRUNO Date: Mon, 20 Jan 2020 15:42:41 +0000 Subject: [PATCH] providers/azure: fix clippy warnings --- src/providers/azure/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/azure/mod.rs b/src/providers/azure/mod.rs index 52c296c2..f938458d 100644 --- a/src/providers/azure/mod.rs +++ b/src/providers/azure/mod.rs @@ -475,7 +475,7 @@ impl MetadataProvider for Azure { out.insert("AZURE_IPV4_DYNAMIC".to_string(), dynamic_ipv4.to_string()); } - out.insert("AZURE_VMSIZE".to_string(), vmsize.to_string()); + out.insert("AZURE_VMSIZE".to_string(), vmsize); Ok(out) }