From ddb4321e1dfd142a68b02de3faf98029d3009a6b Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Mon, 7 Dec 2015 14:20:48 -0500 Subject: [PATCH] INT-3900: Fix Doc QOS > 0, not > 1. --- src/reference/asciidoc/mqtt.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/asciidoc/mqtt.adoc b/src/reference/asciidoc/mqtt.adoc index a60f853824..ab0e44e26a 100644 --- a/src/reference/asciidoc/mqtt.adoc +++ b/src/reference/asciidoc/mqtt.adoc @@ -92,7 +92,7 @@ This is not currently available using XML configuration. [NOTE] ==== Prior to _version 4.2.3_, the client always unsubscribed when the adapter was stopped. -This was incorrect because if the client QOS is > 1, we need to keep the subscription active so that messages arriving +This was incorrect because if the client QOS is > 0, we need to keep the subscription active so that messages arriving while the adapter is stopped will be delivered on the next start. This also requires setting the `cleanSession` property on the client factory to `false` - it defaults to `true`.