Reputation: 979
I have a Google App Engine python apps deployed without problems. I changed some logging and redeployed, two things happened:
"GET /_ah/start HTTP/1.1" 500
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
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