You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see emqtt once had an automatic reconnect feature but is has been removed. However I haven't found any recommended replacement.
Doing a quick test reveals unexpected disconnects (for instance, tcp_closed) results in a exit from the emqtt client process, which propagates to my process.
I could probably trap that exit signal and issue a reconnect from my proccess but then what about messages in flight?
Suppose I want to ensure QoS 1-2 messages got sent, do I need to build a queue within my process state and pop items from that queue only after receiving a PUBACK?
The text was updated successfully, but these errors were encountered:
I see emqtt once had an automatic reconnect feature but is has been removed. However I haven't found any recommended replacement.
Doing a quick test reveals unexpected disconnects (for instance, tcp_closed) results in a exit from the emqtt client process, which propagates to my process.
I could probably trap that exit signal and issue a reconnect from my proccess but then what about messages in flight?
Suppose I want to ensure QoS 1-2 messages got sent, do I need to build a queue within my process state and pop items from that queue only after receiving a PUBACK?
The text was updated successfully, but these errors were encountered: