views:

28

answers:

1

I have the version number set in my app.yaml to something like 'rc1'. I'd like to be able to read the current version for a status/health check URL. Is this possible?

+5  A: 

Yes, take a look at http://code.google.com/appengine/docs/python/runtime.html#The_Environment there is a CURRENT_VERSION_ID variable that should tell you that.

webdestroya