Ruben Bär

Results 6 comments of Ruben Bär

Hi Pierre Thank you for your answer - really appreciated :) I think I got a better understanding on this: if an error occurs, then I should reconnect to recover....

Thank you for the corrections and your work on this issue. I updated the issue with the correct string.

Thank you for opening this issue. In my experience, many MQTT clients struggle with properly setting up MQTT sessions. However, this might not be solely a Paho MQTT issue. Proper...

Hi There is a good reason why your code deadlocks and the thread pool did not help. As Pierre said, the network thread calls your callbacks. So waiting in callbacks...

Can you provide all package versions using `pip freeze`? This might not be a paho mqtt issue.

Thanks. I just cooked up a more basic version. Note that this must run as a script and not in a REPL. ```python import threading def run(): import concurrent.futures.thread threading.Thread(target=run).start()...