We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
connAck packet -
MqttConnAck{reasonCode=SUCCESS, sessionPresent=false, restrictions=MqttConnAckRestrictions{receiveMaximum=1024, maximumPacketSize=32768, topicAliasMaximum=0, maximumQos=EXACTLY_ONCE, retainAvailable=true, wildcardSubscriptionAvailable=true, sharedSubscriptionAvailable=true, subscriptionIdentifiersAvailable=true}}
The topicAliasMaximum is 0 in the connAck message, but the client connection snippet is :
(mqttClient as Mqtt5Client?)?.toAsync()?.connectWith()?.restrictions() ?.topicAliasMaximum(65535)?.applyRestrictions()?.cleanStart(true)?.send()
Shouldn't the connAck have topicAliasMaximum of not 0??
Client disconnects once I publish to two or more topics saying - Exception while decoding PUBLISH: topic alias must not be 0
The text was updated successfully, but these errors were encountered:
Hey thanks for the bug report, I'll look into it as soon as I have time
Sorry, something went wrong.
No branches or pull requests
connAck packet -
MqttConnAck{reasonCode=SUCCESS, sessionPresent=false, restrictions=MqttConnAckRestrictions{receiveMaximum=1024, maximumPacketSize=32768, topicAliasMaximum=0, maximumQos=EXACTLY_ONCE, retainAvailable=true, wildcardSubscriptionAvailable=true, sharedSubscriptionAvailable=true, subscriptionIdentifiersAvailable=true}}
The topicAliasMaximum is 0 in the connAck message, but the client connection snippet is :
Shouldn't the connAck have topicAliasMaximum of not 0??
Client disconnects once I publish to two or more topics saying - Exception while decoding PUBLISH: topic alias must not be 0
The text was updated successfully, but these errors were encountered: