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/11/25 13:21:24 UTC

[camel-kafka-connector-examples] branch master updated: SSH source connector: Fixed kafkacat command

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-kafka-connector-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new e3dd313  SSH source connector: Fixed kafkacat command
e3dd313 is described below

commit e3dd31321efc744b3918605b71bbc00b68fa9a99
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 25 14:21:07 2020 +0100

    SSH source connector: Fixed kafkacat command
---
 ssh/ssh-source/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssh/ssh-source/README.adoc b/ssh/ssh-source/README.adoc
index 23dea86..d01348b 100644
--- a/ssh/ssh-source/README.adoc
+++ b/ssh/ssh-source/README.adoc
@@ -205,7 +205,7 @@ $KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.prop
 In another terminal, using kafkacat, you should be able to see the headers.
 
 ```
->  kafkacat -b localhost:9092 -t mytopic -f 'Topic %t[%p], offset: %o, key: %k, payload: %s \n'
+> ./kafkacat -b localhost:9092 -t mytopic
 {"schema":{"type":"string","optional":false},"payload":"Wed Nov 25 12:32:42 UTC 2020\n"}
 % Reached end of topic mytopic [0] at offset 1
 ```