mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-5997 - support legacy clients
This commit is contained in:
parent
81b4b9ae3d
commit
b83c38b04c
|
@ -376,6 +376,9 @@ public class MQTTProtocolConverter {
|
|||
|
||||
public void onUnSubscribe(UNSUBSCRIBE command) throws MQTTProtocolException {
|
||||
checkConnected();
|
||||
if (command.qos() != QoS.AT_LEAST_ONCE && (version != V3_1 || publishDollarTopics != true)) {
|
||||
throw new MQTTProtocolException("Failed to process unsubscribe request", true, new Exception("UNSUBSCRIBE frame not properly formatted, QoS"));
|
||||
}
|
||||
UTF8Buffer[] topics = command.topics();
|
||||
if (topics != null) {
|
||||
for (UTF8Buffer topic : topics) {
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -94,7 +94,7 @@
|
|||
<leveldbjni-version>1.8</leveldbjni-version>
|
||||
<log4j-version>1.2.17</log4j-version>
|
||||
<mockito-version>1.10.19</mockito-version>
|
||||
<mqtt-client-version>1.11</mqtt-client-version>
|
||||
<mqtt-client-version>1.12</mqtt-client-version>
|
||||
<openjpa-version>1.2.0</openjpa-version>
|
||||
<org-apache-derby-version>10.11.1.1</org-apache-derby-version>
|
||||
<org.osgi.core-version>4.3.1</org.osgi.core-version>
|
||||
|
|
Loading…
Reference in New Issue