I have the following code where I also configure auto connect, but once the connection breaks like today morning itself, it does not recover
> streamer.on("message", on_message)
# Modify auto-reconnect parameters: enable it, set interval to 10 seconds, and retry count to 3 streamer.auto_reconnect(True, 20, 3) streamer.connect() process_thread2.start() #process_thread3.start() process_thread4.start() #process_thread6.start() print("hello from main")