This is an automated email from the ASF dual-hosted git repository. tsato pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k-examples.git
commit b18cac2a5b73362d2df6a7a3f8f9e6066891cbb1 Author: Kuthumi Pepple <[email protected]> AuthorDate: Thu Jul 28 08:03:34 2022 +0100 add indentation in kafka example --- generic-examples/kafka/sasl_ssl/SaslSSLKafkaProducer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic-examples/kafka/sasl_ssl/SaslSSLKafkaProducer.java b/generic-examples/kafka/sasl_ssl/SaslSSLKafkaProducer.java index 383f1a0..ed02d75 100644 --- a/generic-examples/kafka/sasl_ssl/SaslSSLKafkaProducer.java +++ b/generic-examples/kafka/sasl_ssl/SaslSSLKafkaProducer.java @@ -27,7 +27,7 @@ public class SaslSSLKafkaProducer extends RouteBuilder { from("timer:foo") .routeId("FromTimer2Kafka") .setBody() - .simple("Message #${exchangeProperty.CamelTimerCounter}") + .simple("Message #${exchangeProperty.CamelTimerCounter}") .to("kafka:{{producer.topic}}") .log("Message correctly sent to the topic!"); }
