Dear Render Team,
We are experiencing a persistent issue with one of our worker services on your platform, which runs a test Telegram admin bot built with Python using the python-telegram-bot library.
Problem Description:
Our service for the test Telegram admin bot (presumably the one logged as adminworker.1 and running admin_bot.py) regularly encounters the following error:
telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
This error indicates that multiple simultaneous getUpdates requests are being made to the Telegram API for the same bot token (the one specific to our test admin bot). We also have another service, (running bot.py for our main bot), which uses a different token and operates stably without this error, despite the bot codes being very similar.
We’ve already tried changing everything, we’ve already simplified the code (made it simple), it’s definitely not about the code, we’ve already changed the tokens (it’s definitely not about the tokens), and even deleted the procfile, which also doesn’t help