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:23:12 UTC

[camel] branch camel-3.x 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 camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


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

commit 8ca3d2a63bcdcfe16ba262c4736504ce80d435ee
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