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