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
Outgoing::Connect
If we log all successful events on poll after connecting to the broker, we should see Outgoing::Connect in it
poll
Event = Outgoing(Connect) Event = Incoming(ConnAck(ConnAck { session_present: false, code: Success, properties: Some(ConnAckProperties { session_expiry_interval: None, receive_max: Some(32), max_qos: None, retain_available: Some(1), max_packet_size: Some(1048576), assigned_client_identifier: None, topic_alias_max: Some(65535), reason_string: None, user_properties: [], wildcard_subscription_available: Some(1), subscription_identifiers_available: Some(1), shared_subscription_available: Some(1), server_keep_alive: None, response_information: None, server_reference: None, authentication_method: None, authentication_data: None }) })) Event = Outgoing(Subscribe(1)) Event = Outgoing(Publish(2))
poll eventlog starts post CONNACK only
Event = Incoming(ConnAck(ConnAck { session_present: false, code: Success, properties: Some(ConnAckProperties { session_expiry_interval: None, receive_max: Some(32), max_qos: None, retain_available: Some(1), max_packet_size: Some(1048576), assigned_client_identifier: None, topic_alias_max: Some(65535), reason_string: None, user_properties: [], wildcard_subscription_available: Some(1), subscription_identifiers_available: Some(1), shared_subscription_available: Some(1), server_keep_alive: None, response_information: None, server_reference: None, authentication_method: None, authentication_data: None }) })) Event = Outgoing(Subscribe(1)) Event = Outgoing(Publish(2))
The text was updated successfully, but these errors were encountered:
This was initiated by #852 (comment), any inputs @swanandx?
fixed by: https://github.com/bytebeamio/rumqtt/compare/split-connect?expand=1
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
If we log all successful events on
poll
after connecting to the broker, we should seeOutgoing::Connect
in itCurrent Behavior
poll eventlog starts post CONNACK only
The text was updated successfully, but these errors were encountered: