RobertFloor opened a new issue, #8729:
URL: https://github.com/apache/camel-quarkus/issues/8729

   ### Bug description
   
   This example [Camel Quarkus Kafka 
Example](https://github.com/apache/camel-quarkus-examples/blob/main/kafka/src/main/java/org/acme/kafka/Routes.java
 ) does not work as intended. The exchange property CamelTimerCounter is not 
present so the output becomes. It is supposed to increment every time it is 
ran.  I believe this line is not working as intended 
   
   ```
                   .setBody().simple("Message 
#${exchangeProperty.CamelTimerCounter}")
   ```
   
   When running ```mvn quarkus:dev``` I get this output 
   
   ```
   2026-06-04 09:07:10,702 INFO  [org.acme.kafka.Routes:32] (Camel (camel-1) 
thread #6 - KafkaProducer[test]) Message correctly sent to the topic! : 
"Message #"
   2026-06-04 09:07:10,703 INFO  [org.acme.kafka.Routes:37] (Camel (camel-1) 
thread #5 - KafkaConsumer[test]) Received : "Message #"
   2026-06-04 09:07:20,671 INFO  [org.acme.kafka.Routes:32] (Camel (camel-1) 
thread #7 - KafkaProducer[test]) Message correctly sent to the topic! : 
"Message #"
   2026-06-04 09:07:20,672 INFO  [org.acme.kafka.Routes:37] (Camel (camel-1) 
thread #5 - KafkaConsumer[test]) Received : "Message #"
   ```
   
   I am running the version in the main of the repository with 
   
   ```
       <artifactId>camel-quarkus-examples-kafka</artifactId>
       <groupId>org.apache.camel.quarkus.examples</groupId>
       <version>3.36.0</version>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to