The bot failed because, in Python, the call to Maestro did not ignore the self-signed SSL certificate from the proxy or server.
This issue is common in corporate environments that use internal certificates or traffic inspection proxies.
You need to adjust the SSL verification before running the bot again.
You can either disable SSL verification or install the Certificate Authority (CA) certificate.
Example of disabling verification in the code:
VERIFY_SSL_CERTFor the flag maestro.VERIFY_SSL_CERT = False to work properly, the botcity-maestro-sdk dependency must be version 0.7.0 or higher (PyPI).
In your bot code, define the flag to ignore SSL certificates:
This allows the bot to reconnect successfully, even in environments using self-signed certificates.