Due to this scheduled maintenance, the datastore will be in read-only mode for approximately 10 minutes. If you'd like to modify your app to catch this exception,
here are some specifics:
exception
google.appengine.runtime.apiproxy_errors.CapabilityDisabledError
will be thrown by db.Model.put(), db.Model.delete(), and
db.run_in_transaction(). You can use python's try syntax to fail gracefully on writes like this:
from google.appengine.ext import db
from google.appengine.runtime.apiproxy_errors import
CapabilityDisabledError
myModel = db.Model()