This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git
The following commit(s) were added to refs/heads/main by this push:
new 196e691 Fix logical format conflict (#605)
196e691 is described below
commit 196e691b1f1b8e94c03b03d0afaf62f0a75dc9f6
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Wed Jan 14 20:42:39 2026 +0000
Fix logical format conflict (#605)
---
src/azure/builder.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/azure/builder.rs b/src/azure/builder.rs
index 278ffbf..8fb9609 100644
--- a/src/azure/builder.rs
+++ b/src/azure/builder.rs
@@ -670,13 +670,13 @@ impl MicrosoftAzureBuilder {
self.account_name = Some(validate(a)?);
self.container_name =
Some(validate(parsed.username())?);
}
- Some((a, "dfs.fabric.microsoft.com")) | Some((a,
"blob.fabric.microsoft.net")) => {
+ Some((a, "dfs.fabric.microsoft.com"))
+ | Some((a, "blob.fabric.microsoft.net")) => {
self.account_name = Some(validate(a)?);
self.container_name =
Some(validate(parsed.username())?);
self.use_fabric_endpoint = true.into();
}
- _ => return Err(Error::UrlNotRecognised { url:
url.into() }.into())
-
+ _ => return Err(Error::UrlNotRecognised { url:
url.into() }.into()),
}
}
}