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

aldettinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7e7cf449e4078b99bec4e8ee3cdade3aa4861f63
Author: Philippe Schaller <philippe.schal...@gmail.ch>
AuthorDate: Tue Sep 18 17:40:39 2018 +0200

    Fix MQTT URI param typo.
---
 .../main/java/org/apache/camel/component/mqtt/MQTTConfiguration.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-mqtt/src/main/java/org/apache/camel/component/mqtt/MQTTConfiguration.java
 
b/components/camel-mqtt/src/main/java/org/apache/camel/component/mqtt/MQTTConfiguration.java
index eb341df..b83b4dd 100644
--- 
a/components/camel-mqtt/src/main/java/org/apache/camel/component/mqtt/MQTTConfiguration.java
+++ 
b/components/camel-mqtt/src/main/java/org/apache/camel/component/mqtt/MQTTConfiguration.java
@@ -75,7 +75,7 @@ public class MQTTConfiguration extends MQTT {
     String willTopic;
     @UriParam
     String willMessage;
-    @UriParam(enums = "AtMostOnce,AtLeastOne,ExactlyOnce", defaultValue = 
"AtMostOnce")
+    @UriParam(enums = "AtMostOnce,AtLeastOnce,ExactlyOnce", defaultValue = 
"AtMostOnce")
     QoS willQos = QoS.AT_MOST_ONCE;
     @UriParam
     QoS willRetain;
@@ -112,7 +112,7 @@ public class MQTTConfiguration extends MQTT {
     private int sendWaitInSeconds = 5;
     @UriParam
     private boolean byDefaultRetain;
-    @UriParam(enums = "AtMostOnce,AtLeastOne,ExactlyOnce", defaultValue = 
"AtLeastOnce")
+    @UriParam(enums = "AtMostOnce,AtLeastOnce,ExactlyOnce", defaultValue = 
"AtLeastOnce")
     private String qualityOfService = QoS.AT_LEAST_ONCE.name();
     private QoS qos = QoS.AT_LEAST_ONCE;
 

Reply via email to