This is an automated email from the ASF dual-hosted git repository.
alamb 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 fb826ca Implement `Clone` for `MicrosoftAzure` (#825)
fb826ca is described below
commit fb826cad24374d27a5a73061b3d8da1e4c1c7b26
Author: Kyle Barron <[email protected]>
AuthorDate: Mon Aug 17 16:38:33 2026 -0400
Implement `Clone` for `MicrosoftAzure` (#825)
---
src/azure/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/azure/mod.rs b/src/azure/mod.rs
index f324105..f149078 100644
--- a/src/azure/mod.rs
+++ b/src/azure/mod.rs
@@ -62,7 +62,7 @@ pub use credential::AzureCredential;
const STORE: &str = "MicrosoftAzure";
/// Interface for [Microsoft Azure Blob
Storage](https://azure.microsoft.com/en-us/services/storage/blobs/).
-#[derive(Debug)]
+#[derive(Debug, Clone)]
pub struct MicrosoftAzure {
client: Arc<AzureClient>,
}