2 years 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"
33 Replies
2 years ago
Project ID: 8fc2ad89-714b-4cb3-9778-cb64d1373409
2 years ago
Do you guys have the new edge proxy enabled within your services?
If not could you try enabling it
2 years ago
You can go into service settings and there should be an option to toggle over to the new edge proxy
2 years 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
2 years ago
please send your domain
2 years ago
are you on the v2 runtime?
2 years ago
check your service settings
2 years ago
i think your issue might be unrelated then
2 years 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
2 years ago
let me know if either of you experience this again.
2 years ago
I have it already enabled for both of my services
and I am running on v2 runtime.
2 years ago
have you experienced this issue again?
2 years ago
Nope 🤔
2 years ago
awesome
2 years ago
haha! Is that a good thing or bad? 😅
2 years ago
wdym? how could it be bad that you haven't experienced any issues
2 years 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"
}
}