You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zb...@apache.org on 2022/10/13 15:04:21 UTC

[camel-quarkus-examples] branch camel-quarkus-main updated: Fix typo

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

zbendhiba pushed a commit to branch camel-quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


The following commit(s) were added to refs/heads/camel-quarkus-main by this push:
     new c4e7359  Fix typo
c4e7359 is described below

commit c4e7359261bbcb94e0b5fbcb5c9498b011ae3858
Author: valery1707 <va...@gmail.com>
AuthorDate: Wed Oct 12 16:29:08 2022 +0300

    Fix typo
---
 kafka/src/main/java/org/acme/kafka/Routes.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kafka/src/main/java/org/acme/kafka/Routes.java b/kafka/src/main/java/org/acme/kafka/Routes.java
index 9320b56..87642e6 100644
--- a/kafka/src/main/java/org/acme/kafka/Routes.java
+++ b/kafka/src/main/java/org/acme/kafka/Routes.java
@@ -30,7 +30,7 @@ public class Routes extends RouteBuilder {
                 .routeId("FromTimer2Kafka")
                 .setBody().simple("Message #${exchangeProperty.CamelTimerCounter}")
                 .to("kafka:{{kafka.topic.name}}")
-                .log("Message sent correctly sent to the topic! : \"${body}\" ");
+                .log("Message correctly sent to the topic! : \"${body}\" ");
 
         // kafka consumer
         from("kafka:{{kafka.topic.name}}")