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 2018/06/15 05:56:07 UTC

[camel] branch master updated: Upgrade Rabbit MQ client to version 5.3.0

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.git


The following commit(s) were added to refs/heads/master by this push:
     new d71d800  Upgrade Rabbit MQ client to version 5.3.0
d71d800 is described below

commit d71d800fd357d545cb44b03070e455750288b5eb
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jun 15 07:53:26 2018 +0200

    Upgrade Rabbit MQ client to version 5.3.0
---
 components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc       | 4 ++--
 parent/pom.xml                                                        | 2 +-
 .../component/rabbitmq/springboot/RabbitMQComponentConfiguration.java | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc b/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
index e5d405f..157636c 100644
--- a/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
+++ b/components/camel-rabbitmq/src/main/docs/rabbitmq-component.adoc
@@ -64,7 +64,7 @@ The RabbitMQ component supports 48 options which are listed below.
 | *threadPoolSize* (consumer) | The consumer uses a Thread Pool Executor with a fixed number of threads. This setting allows you to set that number of threads. | 10 | int
 | *autoDetectConnection Factory* (advanced) | Whether to auto-detect looking up RabbitMQ connection factory from the registry. When enabled and a single instance of the connection factory is found then it will be used. An explicit connection factory can be configured on the component or endpoint level which takes precedence. | true | boolean
 | *connectionTimeout* (advanced) | Connection timeout | 60000 | int
-| *requestedChannelMax* (advanced) | Connection requested channel max (max number of channels offered) | 0 | int
+| *requestedChannelMax* (advanced) | Connection requested channel max (max number of channels offered) | 2047 | int
 | *requestedFrameMax* (advanced) | Connection requested frame max (max size of frame offered) | 0 | int
 | *requestedHeartbeat* (advanced) | Connection requested heartbeat (heart-beat in seconds offered) | 60 | int
 | *automaticRecovery Enabled* (advanced) | Enables connection automatic recovery (uses connection implementation that performs automatic recovery when connection shutdown is not initiated by the application) |  | Boolean
@@ -179,7 +179,7 @@ with the following path and query parameters:
 | *networkRecoveryInterval* (advanced) | Network recovery interval in milliseconds (interval used when recovering from network failure) | 5000 | Integer
 | *queueArgs* (advanced) | *Deprecated* Key/value args for configuring the queue parameters when declare=true |  | Map
 | *queueArgsConfigurer* (advanced) | *Deprecated* Set the configurer for setting the queue args in Channel.queueDeclare |  | ArgsConfigurer
-| *requestedChannelMax* (advanced) | Connection requested channel max (max number of channels offered) | 0 | int
+| *requestedChannelMax* (advanced) | Connection requested channel max (max number of channels offered) | 2047 | int
 | *requestedFrameMax* (advanced) | Connection requested frame max (max size of frame offered) | 0 | int
 | *requestedHeartbeat* (advanced) | Connection requested heartbeat (heart-beat in seconds offered) | 60 | int
 | *requestTimeout* (advanced) | Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds) | 20000 | long
diff --git a/parent/pom.xml b/parent/pom.xml
index ad9962d..3e1b497 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -578,7 +578,7 @@
     <quartz-version-range>[1.8,2)</quartz-version-range>
     <quartz2-version>2.3.0</quartz2-version>
     <quickfixj-version>2.0.0</quickfixj-version>
-    <rabbitmq-amqp-client-version>5.2.0</rabbitmq-amqp-client-version>
+    <rabbitmq-amqp-client-version>5.3.0</rabbitmq-amqp-client-version>
     <reactive-streams-version>1.0.2</reactive-streams-version>
     <reactor-version>3.1.7.RELEASE</reactor-version>
     <reflections-version>0.9.11</reflections-version>
diff --git a/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java
index 2288921..bedcf07 100644
--- a/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java
@@ -88,7 +88,7 @@ public class RabbitMQComponentConfiguration
     /**
      * Connection requested channel max (max number of channels offered)
      */
-    private Integer requestedChannelMax = 0;
+    private Integer requestedChannelMax = 2047;
     /**
      * Connection requested frame max (max size of frame offered)
      */

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.