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 2020/12/04 15:24:02 UTC

[camel] branch master updated (1b8f013 -> 768f36a)

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

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


    from 1b8f013  CAMEL-15917: Resilience4j Property Component doesn't work for configurationRef (#4721)
     new b5398d2  Regen
     new 768f36a  Fixed build in tests jmh

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.


Summary of changes:
 .../camel/builder/endpoint/SedaEnrichSimpleExpressionTest.java       | 2 +-
 .../src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java     | 5 +++++
 .../src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java     | 5 +++++
 .../src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java     | 5 +++++
 4 files changed, 16 insertions(+), 1 deletion(-)


[camel] 01/02: Regen

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b5398d24f517313f791fd79e86dc5b42ea6a8f3c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 4 16:06:37 2020 +0100

    Regen
---
 .../apache/camel/builder/endpoint/SedaEnrichSimpleExpressionTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaEnrichSimpleExpressionTest.java b/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaEnrichSimpleExpressionTest.java
index cc67510..964bbfe 100644
--- a/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaEnrichSimpleExpressionTest.java
+++ b/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaEnrichSimpleExpressionTest.java
@@ -31,7 +31,7 @@ public class SedaEnrichSimpleExpressionTest extends CamelTestSupport {
                 from(direct("start")).enrich(seda("${exchangeProperty.whereTo}").offerTimeout(1000)).to("mock:result");
 
                 from("seda:cheese")
-                    .transform().constant("Hello World");
+                        .transform().constant("Hello World");
             }
         };
     }


[camel] 02/02: Fixed build in tests jmh

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 768f36a123ea7d2e741950520a61a194c4c0e9c7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 4 16:23:05 2020 +0100

    Fixed build in tests jmh
---
 .../src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java     | 5 +++++
 .../src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java     | 5 +++++
 .../src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java     | 5 +++++
 3 files changed, 15 insertions(+)

diff --git a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java
index 2ef4440..3f3751f 100644
--- a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java
+++ b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java
@@ -40,4 +40,9 @@ public class CSimpleScript1 extends CSimpleSupport {
         return headerAs(message, "gold", int.class) == 123;
     }
 
+    @Override
+    public boolean isPredicate() {
+        return true;
+    }
+
 }
diff --git a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java
index 9d0305a..f5ad940 100644
--- a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java
+++ b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java
@@ -40,4 +40,9 @@ public class CSimpleScript2 extends CSimpleSupport {
         return headerAs(message, "gold", int.class) > 123;
     }
 
+    @Override
+    public boolean isPredicate() {
+        return true;
+    }
+
 }
diff --git a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java
index 82f4dd9..c8d559b 100644
--- a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java
+++ b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java
@@ -40,4 +40,9 @@ public class CSimpleScript3 extends CSimpleSupport {
         return headerAs(message, "gold", int.class) < 123;
     }
 
+    @Override
+    public boolean isPredicate() {
+        return true;
+    }
+
 }