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
=ERROR REPORT==== 12-Jul-2019::11:49:17.754315 === emqtt(emqs-MacBook-Pro_bench_pub_1_2835554768): State: connected, Unexpected Event: (cast, {mqtt_packet, {mqtt_packet_header, 5, false, 0, false}, {mqtt_packet_puback, 18024, 147, #{}}, undefined}) =ERROR REPORT==== 12-Jul-2019::12:10:49.543783 === emqtt(emqs-MacBook-Pro_bench_pub_1_2641837960): State: connected, Unexpected Event: (cast, {mqtt_packet, {mqtt_packet_header, 5, false, 0, false}, {mqtt_packet_puback, 5076, 147, #{}}, undefined})
The text was updated successfully, but these errors were encountered:
It is trivial to reproduce by specifying protocol v5 instead of v4: This works: { ok, C } = emqtt:start_link( [ {proto_ver, v4} ] ), { ok, _ } = emqtt:connect( C ), { ok, _ } = emqtt:publish( C, <<"TopicA">>, <<"msg 1">>, 2 ), receive { puback, _ } -> ok end, ok = emqtt:disconnect( C ).
This does not, and it creates the posted error message: { ok, C } = emqtt:start_link( [ {proto_ver, v5} ] ), { ok, _ } = emqtt:connect( C ), { ok, _ } = emqtt:publish( C, <<"TopicA">>, <<"msg 1">>, 2 ), receive { puback, _ } -> ok end, ok = emqtt:disconnect( C ).
EMQX 4.0 beta, OTP 21.2 and OTP 22.0, 64-bit Windows 10.
Sorry, something went wrong.
emqplus
No branches or pull requests
The text was updated successfully, but these errors were encountered: