Hi,
There is this warning in GAE deployment:
If you deploy using Datastore you don't need rdbms at all so I took this workaround:
In pydal _gae.py, line 15:
from google.appengine.api import namespace_manager #, rdbms
In pydal google.py lines 15, 16:
if gae:
from .._gae import ndb, namespace_manager, classobj, NDBPolyModel #, rdbms
In pyday google.py lines 54, 55:
#def connector(self):
# return rdbms.connect(**self.driver_args)
It obviously disable @adapters.register_for("google:sql") but if Datastore is used there is no problem.