Is there any network speed cap in developer plan

Hello, For the past 1 week i am refactoring my code to realise that my code is perfectly fine. Actually i am trying to upload a file, to an external API using a POST request. It takes around 1 minutes to upload 200MB of data when run on my local machine. But when i do the same in railway platform it takes forever to upload. So i did some debugging to see where it is getting stuck and i found it was not proceeding to the POST request. And when i checked the network tab of my project. The inbound and outbound of the network is not going pass 500KB. Also this is my Procfile
gunicorn --workers=3 --threads=3 --worker-class=gthread app:app
gunicorn --workers=3 --threads=3 --worker-class=gthread app:app
Please help. I am stuck here from the past 1 week.
5 Replies
Percy
Percy16mo ago
Project ID: N/A
Percy
Percy16mo ago
⚠️ experimental feature
みなと
みなと16mo ago
N/A
Brody
Brody16mo ago
there is no network speed cap on any plan, this is a code issue, or maybe even an issue with your own network / isp
みなと
みなと16mo ago
No brother that is what i am saying when i run the code on my local machine it takes around 1 minute to upload 200MB of data. I have checked my code multiple times. And i have run only this piece of code at least 20 times on my local machine it works fine. What about the Procfile is that correct? Or should we add something else.