This is an automated email from the ASF dual-hosted git repository. orpiske 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 e4bd273ab17 (chores) camel-google-secret-manager: fixed formatting e4bd273ab17 is described below commit e4bd273ab171d0c74123d66f44793edb31b2f67f Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Wed Sep 21 14:01:27 2022 +0200 (chores) camel-google-secret-manager: fixed formatting --- .../google/secret/manager/GoogleSecretManagerPropertiesFunction.java | 4 +++- 1 file changed, 3 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 3bfa1575fea..0b9f8786960 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 @@ -78,11 +78,13 @@ public class GoogleSecretManagerPropertiesFunction extends ServiceSupport implem private static final String CAMEL_VAULT_GCP_SERVICE_ACCOUNT_KEY = "CAMEL_VAULT_GCP_SERVICE_ACCOUNT_KEY"; private static final String CAMEL_VAULT_GCP_PROJECT_ID = "CAMEL_VAULT_GCP_PROJECT_ID"; private static final String CAMEL_VAULT_GCP_USE_DEFAULT_INSTANCE = "CAMEL_VAULT_GCP_USE_DEFAULT_INSTANCE"; + + boolean useDefaultInstance; + private CamelContext camelContext; private SecretManagerServiceClient client; private String projectId; private final Set<String> secrets = new HashSet<>(); - boolean useDefaultInstance; @Override protected void doStart() throws Exception {