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
Hi!
I've found that messages published right after execution of MQTTLibrary.Subscribe get lost. So I've had to come up with this workaround
MQTTLibrary.Subscribe
MQTTLibrary.Connect ${host} # FIXME Sleep 1s MQTTLibrary.Subscribe ${topic}
This way, messages published right after MQTTLibrary.Subscribe can be retrieved with MQTT.Listen, but of course a sleep sucks.
MQTT.Listen
Am I missing something about the library?
PS: maybe client connect isn't blocking enough? The client id is empty in the log messages print by MQTTLibrary.Connect:
MQTTLibrary.Connect
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
I've found that messages published right after execution of
MQTTLibrary.Subscribe
get lost. So I've had to come up with this workaroundThis way, messages published right after
MQTTLibrary.Subscribe
can be retrieved withMQTT.Listen
, but of course a sleep sucks.Am I missing something about the library?
PS: maybe client connect isn't blocking enough? The client id is empty in the log messages print by
MQTTLibrary.Connect
:The text was updated successfully, but these errors were encountered: