Alessandro Solbiati
Alessandro Solbiati

Reputation: 979

Google App Engine: "GET /_ah/start HTTP/1.1" 500

I have a Google App Engine python apps deployed without problems. I changed some logging and redeployed, two things happened:

  1. The endpoint keep returning "GET /_ah/start HTTP/1.1" 500
  2. On GCP dashboard under App/Version I see that there are not instances on the latest version of my app. (I manually migrated the service on the last version of working in the image below)

enter image description here

This looks like they are having internal problems Google Cloud, or I am doing something wrong? Is there a way to manually allocate instance on the latest version of my GAE? It should be automatic to my understanding.

Upvotes: 1

Views: 1406

Answers (1)

Dan Cornilescu
Dan Cornilescu

Reputation: 39824

Automatically migrating the traffic to a newly deployed version depends on the options used for deployment. From gcloud app deploy:

--promote

Promote the deployed version to receive all traffic. Overrides the default app/promote_by_default property value for this command invocation. Use --no-promote to disable.

Upvotes: 3

Related Questions