You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/06 17:24:57 UTC

[camel] branch master updated: CAMEL-14668: camel-core - Optimize getEndpoint on camel context

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0518db5  CAMEL-14668: camel-core - Optimize getEndpoint on camel context
0518db5 is described below

commit 0518db5a8f23b6271e0e25ba0fd37fc8e17139b6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Mar 6 18:24:38 2020 +0100

    CAMEL-14668: camel-core - Optimize getEndpoint on camel context
---
 .../java/org/apache/camel/component/debezium/DebeziumConsumerTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-debezium-common/camel-debezium-common-component/src/test/java/org/apache/camel/component/debezium/DebeziumConsumerTest.java b/components/camel-debezium-common/camel-debezium-common-component/src/test/java/org/apache/camel/component/debezium/DebeziumConsumerTest.java
index 246a93b..1b91915 100644
--- a/components/camel-debezium-common/camel-debezium-common-component/src/test/java/org/apache/camel/component/debezium/DebeziumConsumerTest.java
+++ b/components/camel-debezium-common/camel-debezium-common-component/src/test/java/org/apache/camel/component/debezium/DebeziumConsumerTest.java
@@ -151,7 +151,7 @@ public class DebeziumConsumerTest extends CamelTestSupport {
         return new RouteBuilder() {
             @Override
             public void configure() throws Exception {
-                from("debezium")
+                from("debezium:dummy")
                         .to(to);
             }
         };