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

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

commit 75a5125d300a28b12e1fd8e1a508556739aa442e
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Fri Oct 11 13:18:58 2019 +0200

    CAMEL-14047: Fixed CS
---
 components/camel-pulsar/src/main/docs/pulsar-component.adoc           | 4 ++--
 .../camel/component/pulsar/configuration/PulsarConfiguration.java     | 2 +-
 .../component/pulsar/PulsarProducerUndefinedProducerNameInTest.java   | 2 +-
 .../java/org/apache/camel/component/pulsar/PulsarTestSupport.java     | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/components/camel-pulsar/src/main/docs/pulsar-component.adoc 
b/components/camel-pulsar/src/main/docs/pulsar-component.adoc
index dfa4280..26d5fa8 100644
--- a/components/camel-pulsar/src/main/docs/pulsar-component.adoc
+++ b/components/camel-pulsar/src/main/docs/pulsar-component.adoc
@@ -88,7 +88,7 @@ with the following path and query parameters:
 | *initialSequenceId* (producer) | Set the baseline for the sequence ids for 
messages published by the producer. First message will be using 
(initialSequenceId 1) as its sequence id and subsequent messages will be 
assigned incremental sequence ids, if not otherwise specified. | -1 | long
 | *maxPendingMessages* (producer) | Set the max size of the queue holding the 
messages pending to receive an acknowledgment from the broker. Default is 1000. 
| 1000 | int
 | *maxPendingMessagesAcross Partitions* (producer) | Set the number of max 
pending messages across all the partitions. Default is 50000. | 50000 | int
-| *producerName* (producer) | Name of the producer, if unset lets Pulsar 
select a unique identifier | | String
+| *producerName* (producer) | Name of the producer, if unset lets Pulsar 
select a unique identifier |  | String
 | *sendTimeoutMs* (producer) | Send timeout in milliseconds. Defaults to 
30,000ms (30 seconds) | 30000 | int
 | *synchronous* (advanced) | Sets whether synchronous processing should be 
strictly used, or Camel is allowed to use asynchronous processing (if 
supported). | false | boolean
 |===
@@ -120,4 +120,4 @@ The component supports 3 options, which are listed below.
 | *camel.component.pulsar.pulsar-client* | The pulsar client. The option is a 
org.apache.pulsar.client.api.PulsarClient type. |  | String
 | *camel.component.pulsar.resolve-property-placeholders* | Whether the 
component should resolve property placeholders on itself when starting. Only 
properties which are of String type can use property placeholders. | true | 
Boolean
 |===
-// spring-boot-auto-configure options: END
\ No newline at end of file
+// spring-boot-auto-configure options: END
diff --git 
a/components/camel-pulsar/src/main/java/org/apache/camel/component/pulsar/configuration/PulsarConfiguration.java
 
b/components/camel-pulsar/src/main/java/org/apache/camel/component/pulsar/configuration/PulsarConfiguration.java
index 8fb3022..20c29eb 100644
--- 
a/components/camel-pulsar/src/main/java/org/apache/camel/component/pulsar/configuration/PulsarConfiguration.java
+++ 
b/components/camel-pulsar/src/main/java/org/apache/camel/component/pulsar/configuration/PulsarConfiguration.java
@@ -124,7 +124,7 @@ public class PulsarConfiguration {
     }
 
     /**
-     * Name of the producer
+     * Name of the producer, if unset lets Pulsar select a unique identifier
      */
     public void setProducerName(String producerName) {
         this.producerName = producerName;
diff --git 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarProducerUndefinedProducerNameInTest.java
 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarProducerUndefinedProducerNameInTest.java
index 5085730..0f9d93d 100644
--- 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarProducerUndefinedProducerNameInTest.java
+++ 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarProducerUndefinedProducerNameInTest.java
@@ -1,4 +1,4 @@
-/*
+/**
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
diff --git 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarTestSupport.java
 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarTestSupport.java
index 1826a2c..f3ecb3c 100644
--- 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarTestSupport.java
+++ 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarTestSupport.java
@@ -1,4 +1,4 @@
-/*
+/**
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.

Reply via email to