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 2021/01/19 08:23:54 UTC

[camel-kafka-connector-examples] branch master updated: Couchbase example: Added a little note to explicitly add the driver

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 22eaad8  Couchbase example: Added a little note to explicitly add the driver
22eaad8 is described below

commit 22eaad8604b37e4c1c4cb7db14666a5b2aacc959
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jan 19 09:23:33 2021 +0100

    Couchbase example: Added a little note to explicitly add the driver
---
 couchbase/couchbase-sink/README.adoc | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/couchbase/couchbase-sink/README.adoc b/couchbase/couchbase-sink/README.adoc
index 07330c1..d4b2ffe 100644
--- a/couchbase/couchbase-sink/README.adoc
+++ b/couchbase/couchbase-sink/README.adoc
@@ -32,6 +32,12 @@ In this example we'll use `/home/otavio/connectors/`
 > wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-couchbase-kafka-connector/0.7.0/camel-couchbase-kafka-connector-0.7.0-package.zip
 > unzip camel-couchbase-kafka-connector-0.7.0-package.zip
 ```
+There is a little bug in 0.7.0, so we'll need to add explicitly the couchbase driver
+
+```
+> cd /home/otavio/connectors/camel-couchbase-kafka-connector
+> wget https://repo1.maven.org/maven2/com/couchbase/client/java-client/3.1.0/java-client-3.1.0.jar
+```
 
 ## Setting up Couchbase
 
@@ -107,4 +113,4 @@ kafka-console-producer.sh --broker-list localhost:9092 --topic couchbase-sink-to
 >message
 ```
 You can verify the behavior by accessing Documents page on the Buckets package in the
-Couchbase UI.
\ No newline at end of file
+Couchbase UI.