Hi Guys,
What is the best way to implement api reconnection in case of a loss with an error 504?
My app is in python, and api is in a thread running app.run().
Just running app.connect() again after disconnect doesn't work. Apparently some cleanup is required.
Should an old thread be abandoned and a new thread be started? I am confused.