みなと
みなと
RRailway
Created by みなと on 5/10/2024 in #✋|help
what is the error?
No description
10 replies
RRailway
Created by みなと on 5/9/2024 in #✋|help
Propagation time?
Hey if you remember I have hosted a flask app before I had asked for help one of my routes was not working now when i deleted all the project and re-uploaded the same project now all the three routes are not working does it take time for the app to propagate in your system?
18 replies
RRailway
Created by みなと on 5/6/2024 in #✋|help
having an error for no reason
So I am using a flask application and I am using the website for downloading the files i have 3 such routes. 2 of them are working fine but the other one is not when hosted in railway. There are no logs in railway.app as well (logs like in flask app when run locally). I need to see the logs to fix this error. WHERE CAN I LOOK AT THE LOGS LIKE THE LOGS IN FLASK WHEN RUN LOCALLY. FYI all the routes work fine locally. Thanks in advance ☺️
27 replies
RRailway
Created by みなと on 3/31/2023 in #✋|help
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.
7 replies
RRailway
Created by みなと on 3/24/2023 in #✋|help
Unable to aend POST request
Hey i am trying to send a POST request to an external API from my flask application in the UI i am getting this error. Application error: a client side exception had occurred. When i check the logs i am getting this error
[2023-03-23 06:07:35 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:37)
[2023-03-23 06:07:36 +0000] [1] [WARNING] Worker with pid 37 was terminated due to signal 9
[2023-03-23 06:07:36 +0000] [39] [INFO] Booting worker with pid: 39
[2023-03-23 06:07:35 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:37)
[2023-03-23 06:07:36 +0000] [1] [WARNING] Worker with pid 37 was terminated due to signal 9
[2023-03-23 06:07:36 +0000] [39] [INFO] Booting worker with pid: 39
Thanks in advance
11 replies
RRailway
Created by みなと on 3/24/2023 in #✋|help
Getting worker timeout error
Hey i am trying to send a POST request to an external API from my flask application in the UI i am getting this error. Application error: a client side exception had occurred. When i check the logs i am getting this error
[2023-03-23 06:07:35 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:37)
[2023-03-23 06:07:36 +0000] [1] [WARNING] Worker with pid 37 was terminated due to signal 9
[2023-03-23 06:07:36 +0000] [39] [INFO] Booting worker with pid: 39
[2023-03-23 06:07:35 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:37)
[2023-03-23 06:07:36 +0000] [1] [WARNING] Worker with pid 37 was terminated due to signal 9
[2023-03-23 06:07:36 +0000] [39] [INFO] Booting worker with pid: 39
Thanks in advance
5 replies
RRailway
Created by みなと on 3/17/2023 in #✋|help
New help with subdomain
Hello, i am have 2 web pages within the same project which i want to be using a subdomain for example blog.abc.com and help.and.com how do i point the subdomain within the same project which is already pointing to abc.com in Google domains using custom domains. Thanks in advance.
5 replies
RRailway
Created by みなと on 2/15/2023 in #✋|help
Why am i getting this error?
Hello i am getting this below error when i try to upload a file in flask. It is working fine in my local machine but when i deploy to railway and then i try uploading the file it keeps loading and then times out it is giving the below error in the deploy logs and the file is not getting uploaded.
warnings.warn(FSADeprecationWarning(
[2023-02-15 06:37:28 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:15)
[2023-02-15 06:37:28 +0000] [15] [INFO] Worker exiting (pid: 15)
[2023-02-15 06:37:28 +0000] [16] [INFO] Booting worker with pid: 16
/opt/venv/lib/python3.8/site-packages/flask_sqlalchemy/__init__.py:872: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
warnings.warn(FSADeprecationWarning(
[2023-02-15 06:37:28 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:15)
[2023-02-15 06:37:28 +0000] [15] [INFO] Worker exiting (pid: 15)
[2023-02-15 06:37:28 +0000] [16] [INFO] Booting worker with pid: 16
/opt/venv/lib/python3.8/site-packages/flask_sqlalchemy/__init__.py:872: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
Update: i tryed to update the Procfile to --timeout=120 and still it is not working
25 replies