Brett (Google)
unread,Jul 2, 2009, 11:45:15 AM7/2/09Sign in to reply to author
Sign in to forward
Sign in to report message as abuse
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine Downtime Notify
Now in unplanned maintenance mode. Application deployments, Datastore
writes, and memcache writes have been disabled temporarily. Please
catch CapabilityDisabledError exceptions to handle this properly:
from google.appengine.ext import db
from google.appengine.runtime.apiproxy_errors import
CapabilityDisabledError
myModel = db.Model()
try:
myModel.put()
except CapabilityDisabledError:
# fail gracefully here
pass
Will update as soon as more information becomes available.