This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch export-secrets in repository https://gitbox.apache.org/repos/asf/camel.git
commit d71fee6eae870a785a2a37f025731da4a4972b47 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue May 9 11:06:35 2023 +0200 CAMEL-19099 - Camel-Jbang Export: Add a flag to include secret refresh properties in application.properties Signed-off-by: Andrea Cosentino <[email protected]> --- .../org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java index 67a89357ceb..b95c6830d91 100644 --- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java +++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java @@ -157,9 +157,9 @@ abstract class ExportBaseCommand extends CamelCommand { protected boolean secretsRefresh; @CommandLine.Option(names = { "--secrets-refresh-providers" }, - description = "Comma separated list of providers in the set AWS, GCP and Azure, to use in combination with --secrets-refresh option") + description = "Comma separated list of providers in the set AWS, GCP and Azure, to use in combination with --secrets-refresh option") protected String secretsRefreshProviders; - + @CommandLine.Option(names = { "--logging" }, defaultValue = "false", description = "Can be used to turn on logging (logs to file in <user home>/.camel directory)") boolean logging;
