Is it possible to read the version of a Google App Engine application at runtime?

I have a version number set in my app.yaml, for example "rc1". I would like to be able to read the current version of the status / health check url. Is it possible?

+2


a source to share


1 answer


Yes, take a look at http://code.google.com/appengine/docs/python/runtime.html#The_Environment has a variable CURRENT_VERSION_ID

that should tell you this.



+5


a source







All Articles