You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/16 13:37:49 UTC

[camel] branch main created (now 47245e80500)

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

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


      at 47245e80500 Regen for commit cd2cae3b899d1079353132f92c2007c27786268b

This branch includes the following new commits:

     new bf33e5bcb0c CAMEL-19033: camel-jbang - get trace -> trace
     new 47245e80500 Regen for commit cd2cae3b899d1079353132f92c2007c27786268b

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel] 01/02: CAMEL-19033: camel-jbang - get trace -> trace

Posted by ac...@apache.org.
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

commit bf33e5bcb0c82b7c1f195969b5b33cbeec58b3c0
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Feb 16 14:02:21 2023 +0100

    CAMEL-19033: camel-jbang - get trace -> trace
---
 .../apache/camel/dsl/jbang/core/commands/action/CamelTraceAction.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/action/CamelTraceAction.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelTraceAction.java
index 7487acad717..c9757599c24 100644
--- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelTraceAction.java
+++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelTraceAction.java
@@ -699,7 +699,7 @@ public class CamelTraceAction extends ActionBaseCommand {
                 new Column().dataAlign(HorizontalAlign.LEFT)
                         .minWidth(showExchangeProperties ? 10 : 8).with(TableRow::kindAsString),
                 new Column().dataAlign(HorizontalAlign.LEFT)
-                        .maxWidth(40, OverflowBehaviour.NEWLINE).with(TableRow::typeAsString),
+                        .maxWidth(40, OverflowBehaviour.ELLIPSIS_LEFT).with(TableRow::typeAsString),
                 new Column().dataAlign(HorizontalAlign.RIGHT)
                         .maxWidth(40, OverflowBehaviour.NEWLINE).with(TableRow::keyAsString),
                 new Column().dataAlign(HorizontalAlign.LEFT)


[camel] 02/02: Regen for commit cd2cae3b899d1079353132f92c2007c27786268b

Posted by ac...@apache.org.
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

commit 47245e80500b3d64fffc55e31acc908e610762fd
Author: oscerd <os...@users.noreply.github.com>
AuthorDate: Thu Feb 16 13:32:22 2023 +0000

    Regen for commit cd2cae3b899d1079353132f92c2007c27786268b
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../src/test/java/org/apache/camel/processor/SagaTimeoutTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/SagaTimeoutTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/SagaTimeoutTest.java
index 03d0ba6936c..29c085f501b 100644
--- a/core/camel-core/src/test/java/org/apache/camel/processor/SagaTimeoutTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/processor/SagaTimeoutTest.java
@@ -85,7 +85,7 @@ public class SagaTimeoutTest extends ContextTestSupport {
         CamelExecutionException ex = assertThrows(CamelExecutionException.class,
                 () -> {
                     template.sendBody("direct:saga-multi-participants", "Hello");
-            });
+                });
 
         assertEquals("Cannot begin: status is COMPENSATED", ex.getCause().getMessage());
         end.assertIsSatisfied();