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.git
The following commit(s) were added to refs/heads/main by this push:
new 19f01e3697 object_store/gcp: derive Clone for GoogleCloudStorage
(#7112)
19f01e3697 is described below
commit 19f01e3697dca24988481417613b0aa962300965
Author: james-rms <[email protected]>
AuthorDate: Wed Feb 12 09:03:43 2025 +1100
object_store/gcp: derive Clone for GoogleCloudStorage (#7112)
---
object_store/src/gcp/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/object_store/src/gcp/mod.rs b/object_store/src/gcp/mod.rs
index 2aa99765d9..2f6630d28c 100644
--- a/object_store/src/gcp/mod.rs
+++ b/object_store/src/gcp/mod.rs
@@ -72,7 +72,7 @@ pub type GcpSigningCredentialProvider =
Arc<dyn CredentialProvider<Credential = GcpSigningCredential>>;
/// Interface for [Google Cloud Storage](https://cloud.google.com/storage/).
-#[derive(Debug)]
+#[derive(Debug, Clone)]
pub struct GoogleCloudStorage {
client: Arc<GoogleCloudStorageClient>,
}