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/11/08 13:14:44 UTC

[camel] branch master updated: Camel-NSQ: Regen docs

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 7fec7ee  Camel-NSQ: Regen docs
7fec7ee is described below

commit 7fec7ee1c233858eb253474d947fe78c78eb0781
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Nov 8 14:14:22 2018 +0100

    Camel-NSQ: Regen docs
---
 components/camel-nsq/src/main/docs/nsq-component.adoc                   | 2 +-
 .../src/main/java/org/apache/camel/component/nsq/NsqConfiguration.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-nsq/src/main/docs/nsq-component.adoc b/components/camel-nsq/src/main/docs/nsq-component.adoc
index 85fab09..c8f4be4 100644
--- a/components/camel-nsq/src/main/docs/nsq-component.adoc
+++ b/components/camel-nsq/src/main/docs/nsq-component.adoc
@@ -74,7 +74,7 @@ with the following path and query parameters:
 |===
 | Name | Description | Default | Type
 | *topic* (common) | *Required* The name of topic we want to use |  | String
-| *userAgent* (common) | A String to identify the userAgent |  | String
+| *userAgent* (common) | A String to identify the kind of client |  | String
 | *autoFinish* (consumer) | Automatically finish the NSQ message when it is retrieved from the quese and before the Exchange is processed. | true | Boolean
 | *bridgeErrorHandler* (consumer) | Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. | false | boolean
 | *channel* (consumer) | The name of channel we want to use |  | String
diff --git a/components/camel-nsq/src/main/java/org/apache/camel/component/nsq/NsqConfiguration.java b/components/camel-nsq/src/main/java/org/apache/camel/component/nsq/NsqConfiguration.java
index 0204540..08e5b36 100644
--- a/components/camel-nsq/src/main/java/org/apache/camel/component/nsq/NsqConfiguration.java
+++ b/components/camel-nsq/src/main/java/org/apache/camel/component/nsq/NsqConfiguration.java
@@ -54,7 +54,7 @@ public class NsqConfiguration {
     private Boolean autoFinish = true;
     @UriParam(label = "consumer", defaultValue = "-1", description = "The NSQ consumer timeout period for messages retrieved from the queue. A value of -1 is the server default")
     private long messageTimeout = -1;
-    @UriParam(description = "A String to identify the userAgent")
+    @UriParam(description = "A String to identify the kind of client")
     private String userAgent;
     @UriParam(label = "security")
     private boolean secure;