This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 1059ec5a29c camel-jbang - Add get vault command
1059ec5a29c is described below
commit 1059ec5a29c043e2983bf1862a4e2495943c2d14
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Sep 12 15:46:48 2022 +0200
camel-jbang - Add get vault command
---
.../org/apache/camel/dsl/jbang/core/commands/process/ListVault.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListVault.java
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListVault.java
index a56b5eee4ab..34ea955845d 100644
---
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListVault.java
+++
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListVault.java
@@ -94,11 +94,11 @@ public class ListVault extends ProcessBaseCommand {
.with(r -> r.name),
new
Column().header("VAULT").dataAlign(HorizontalAlign.LEFT).with(r -> r.vault),
new
Column().header("REGION").dataAlign(HorizontalAlign.LEFT).with(r -> r.region),
- new
Column().header("CHECK").headerAlign(HorizontalAlign.LEFT).with(this::getCheckAgo),
- new
Column().header("UPDATE").headerAlign(HorizontalAlign.LEFT).with(this::getReloadAgo),
new
Column().header("SECRET").dataAlign(HorizontalAlign.LEFT).maxWidth(40,
OverflowBehaviour.ELLIPSIS_RIGHT)
.with(r -> r.secret),
- new
Column().header("AGE").headerAlign(HorizontalAlign.CENTER).with(this::getAgo))));
+ new
Column().header("AGE").headerAlign(HorizontalAlign.CENTER).with(this::getAgo),
+ new
Column().header("UPDATE").headerAlign(HorizontalAlign.LEFT).with(this::getReloadAgo),
+ new
Column().header("CHECK").headerAlign(HorizontalAlign.LEFT).with(this::getCheckAgo))));
}
return 0;