You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/04/04 18:22:45 UTC

[camel] branch main updated: CAMEL-19248 fixed copy-paste issue in CouchbaseConsumer: previously rangeStartKey was ignored (#9810)

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new c0777faa795 CAMEL-19248 fixed copy-paste issue in CouchbaseConsumer: previously rangeStartKey was ignored (#9810)
c0777faa795 is described below

commit c0777faa795ca6260d672c7f3886ae5426925c29
Author: dk2k <dk...@users.noreply.github.com>
AuthorDate: Tue Apr 4 21:22:37 2023 +0300

    CAMEL-19248 fixed copy-paste issue in CouchbaseConsumer: previously rangeStartKey was ignored (#9810)
    
    Co-authored-by: dk2k <dk...@ya.ru>
---
 .../java/org/apache/camel/component/couchbase/CouchbaseConsumer.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseConsumer.java b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseConsumer.java
index f82621ca63a..9a40ed96daa 100644
--- a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseConsumer.java
+++ b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseConsumer.java
@@ -90,7 +90,7 @@ public class CouchbaseConsumer extends DefaultScheduledPollConsumer implements R
         if ("".equals(rangeStartKey) || "".equals(rangeEndKey)) {
             return;
         }
-        viewOptions.startKey(rangeEndKey).endKey(rangeEndKey);
+        viewOptions.startKey(rangeStartKey).endKey(rangeEndKey);
     }
 
     @Override