Note |
---|
HiveMQ 4.3.3 already reached it’s end of life. Please upgrade to a supported version. |
Info |
---|
This only affects HiveMQ version 4.3.3, when a used extension implements the ConnectInboundInterceptor |
Observation
An MQTT client using version 3.1 or 3.1.1 gets disconnected with the following statement.
...
Two suitable workaround are:
Decrease the max-inflight-window of the MQTT client to match the server-receive-maximum value of HiveMQ.
Increase the server-receive-maximum value of HiveMQ.
Code Block |
---|
<hivemq xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> ... <mqtt> <receive-maximum> <server-receive-maximum>10</server-receive-maximum> </receive-maximum> </mqtt> ... </hivemq> |
...