10 months ago
I checked my uptime software and noticed it was saying the application was down 18 hours ago.
I don't exactly know what happened. "App sleep" is also disabled.
I restarted my backend service and after that it worked fine.
But I didn't restarted the frontend, and it is continuing to display the same error "Application failed to respond"
0 Replies
10 months ago
Project ID: 8fc2ad89-714b-4cb3-9778-cb64d1373409
10 months ago
Do you guys have the new edge proxy enabled within your services?
If not could you try enabling it
10 months ago
You can go into service settings and there should be an option to toggle over to the new edge proxy
10 months ago
Yes, Railway is on the edge (pun not intended) of switching to the new edge proxy so no harm in switching over and it may very well solve your problem
10 months ago
please send your domain
10 months ago
are you on the v2 runtime?
10 months ago
check your service settings
10 months ago
i think your issue might be unrelated then
10 months ago
did the url of your service hang?
I was making api requests on postman, to the api deployed at that url. And it took a while to respond
10 months ago
let me know if either of you experience this again.
10 months ago
I have it already enabled for both of my services
and I am running on v2 runtime.
10 months ago
have you experienced this issue again?
10 months ago
Nope 🤔
10 months ago
awesome
10 months ago
haha! Is that a good thing or bad? 😅
10 months ago
wdym? how could it be bad that you haven't experienced any issues
10 months ago
ah! ok. Just trying to make a light joke.
my web app was deployed without any errors trying to view and im getting Application failed to respond
{
"$schema": "https://railway.app/railway.schema.json",
"build": {
"builder": "NIXPACKS",
"nixpacksPlan": {
"providers": ["python"],
"phases": {
"setup": {
"nixPkgs": ["python39", "nodejs"],
"buildCommand": [
"pip install -r requirements.txt",
"npm install",
"python manage.py migrate",
"python manage.py collectstatic --noinput"
]
}
}
}
},
"deploy": {
"runtime": "UNSPECIFIED",
"numReplicas": 1,
"startCommand": "gunicorn hartlord.wsgi:application --bind 0.0.0.0:8000 --log-level debug",
"sleepApplication": false,
"restartPolicyType": "ONFAILURE", "restartPolicyMaxRetries": 10 }, "envs": { "DJANGOSECRETKEY": "@djangosecretkey", "DJANGODEBUG": "False"
}
}