Infeasible
Status Update
Comments
kh...@google.com <kh...@google.com> #2
Hello
Thank you for reaching out to us!
This issue seems to be outside of the scope of Issue Tracker. This Issue Tracker is a forum for end users to report bugs and request features on Google Cloud products. Please go through
I recommend you to
I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker describing your issue.
Thank you
Description
So after deploying my Django App with Google Cloud App Engine, I cannot get a respone from the website, in other words the website keeps loading non stop.
You can check it here :https://sam-website-358409.ew.r.appspot.com/
So, trying to debug the problem, I have run : gcloud app logs tail -s default
I notice then lots of warnings that keeps showing repeatidly :
The app is running fine localy and also in the VM instance created by the Google App Engine.
Here is the content of the app.yaml file:
runtime: python env: flex entrypoint: gunicorn -b :$PORT myteam.wsgi
beta_settings: cloud_sql_instances: sam-website-358409:europe-west9:sam-instance
runtime_config: python_version: 3.7
threadsafe: true manual_scaling: instances: 2 network: {}
resources: cpu: 2 memory_gb: 10 disk_size_gb: 50 liveness_check: initial_delay_sec: 300 check_interval_sec: 30 timeout_sec: 4 failure_threshold: 4 success_threshold: 2 readiness_check: check_interval_sec: 5 timeout_sec: 4 failure_threshold: 2 success_threshold: 2 app_start_timeout_sec: 300
I would really appreciate it if you have some clues to solve the problem.