We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3027f8 commit 196e691Copy full SHA for 196e691
src/azure/builder.rs
@@ -670,13 +670,13 @@ impl MicrosoftAzureBuilder {
670
self.account_name = Some(validate(a)?);
671
self.container_name = Some(validate(parsed.username())?);
672
}
673
- Some((a, "dfs.fabric.microsoft.com")) | Some((a, "blob.fabric.microsoft.net")) => {
+ Some((a, "dfs.fabric.microsoft.com"))
674
+ | Some((a, "blob.fabric.microsoft.net")) => {
675
676
677
self.use_fabric_endpoint = true.into();
678
- _ => return Err(Error::UrlNotRecognised { url: url.into() }.into())
679
-
+ _ => return Err(Error::UrlNotRecognised { url: url.into() }.into()),
680
681
682
0 commit comments