The streamer auto connect does not work once the web socket connection breaks it does not recover

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")

@Ketan @Pradeep_Jaiswar

anyone here to help?? I am facing this problem again today @Ketan @Pradeep_Jaiswar

Hi @sameer_siddiqui
The code indicates a reconnect attempt after 20 seconds. Could you please share the logs from these reconnect attempts?

I also suggest decreasing the reconnect interval after a disconnection.

Thanks!