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 2019/04/26 13:23:53 UTC

[camel] branch camel-2.x updated: Camel-Pulsar: Increased the consumerQueueSize in Concurrent Producer Integration tests

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

acosentino pushed a commit to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-2.x by this push:
     new b35b883  Camel-Pulsar: Increased the consumerQueueSize in Concurrent Producer Integration tests
b35b883 is described below

commit b35b8835c87693021b3cdfba863e45dee0385caf
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Apr 26 15:18:13 2019 +0200

    Camel-Pulsar: Increased the consumerQueueSize in Concurrent Producer Integration tests
---
 .../apache/camel/component/pulsar/PulsarConcurrentProducerInTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConcurrentProducerInTest.java b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConcurrentProducerInTest.java
index 7c9bec4..aeff7be 100644
--- a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConcurrentProducerInTest.java
+++ b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConcurrentProducerInTest.java
@@ -41,7 +41,7 @@ public class PulsarConcurrentProducerInTest extends PulsarTestSupport {
     @Produce(uri = "direct:start")
     private ProducerTemplate producerTemplate;
 
-    @EndpointInject(uri = "pulsar:" + TOPIC_URI + "?numberOfConsumers=3&subscriptionType=Shared" + "&subscriptionName=camel-subscription&consumerQueueSize=1"
+    @EndpointInject(uri = "pulsar:" + TOPIC_URI + "?numberOfConsumers=3&subscriptionType=Shared" + "&subscriptionName=camel-subscription&consumerQueueSize=5"
                           + "&consumerNamePrefix=camel-consumer" + "&producerName=" + PRODUCER)
     private Endpoint from;