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 fb8875c4cc7 camel-resilienc4j - Add dev console and Camel CLI command
fb8875c4cc7 is described below

commit fb8875c4cc7279b35f851ff0ed1f57e426cf5039
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Oct 31 12:58:57 2022 +0100

    camel-resilienc4j - Add dev console and Camel CLI command
---
 .../camel/dsl/jbang/core/commands/process/ListCircuitBreaker.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListCircuitBreaker.java
 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListCircuitBreaker.java
index 6e520c31726..7da62408aaa 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListCircuitBreaker.java
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/ListCircuitBreaker.java
@@ -106,7 +106,7 @@ public class ListCircuitBreaker extends ProcessBaseCommand {
                     new 
Column().header("ROUTE").dataAlign(HorizontalAlign.LEFT).with(r -> r.routeId),
                     new 
Column().header("ID").dataAlign(HorizontalAlign.LEFT).with(r -> r.id),
                     new 
Column().header("STATE").dataAlign(HorizontalAlign.LEFT).with(r -> r.state),
-                    new 
Column().header("BUFFER").headerAlign(HorizontalAlign.RIGHT).dataAlign(HorizontalAlign.RIGHT)
+                    new 
Column().header("PENDING").headerAlign(HorizontalAlign.RIGHT).dataAlign(HorizontalAlign.RIGHT)
                             .with(r -> "" + r.bufferedCalls),
                     new 
Column().header("SUCCESS").headerAlign(HorizontalAlign.RIGHT).dataAlign(HorizontalAlign.RIGHT)
                             .with(r -> "" + r.successfulCalls),

Reply via email to