This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 0c63d15314d CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent 
for Vault components - Google Secret Manager (#15982)
0c63d15314d is described below

commit 0c63d15314d90e03da251214c7f9e12bf0f938dd
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed Oct 16 16:21:17 2024 +0200

    CAMEL-21265 - Create ApplicationEnvironmentPreparedEvent for Vault 
components - Google Secret Manager (#15982)
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 .../google/secret/manager/GoogleSecretManagerPropertiesFunction.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
 
b/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
index 600a9b52d2c..25a43e186c9 100644
--- 
a/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
+++ 
b/components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
@@ -90,9 +90,10 @@ public class GoogleSecretManagerPropertiesFunction extends 
ServiceSupport implem
         super();
     }
 
-    public GoogleSecretManagerPropertiesFunction(SecretManagerServiceClient 
client) {
+    public GoogleSecretManagerPropertiesFunction(SecretManagerServiceClient 
client, String projectId) {
         super();
         this.client = client;
+        this.projectId = projectId;
     }
 
     @Override

Reply via email to