lv10
lv10
Did you find a work around to pass different `SQLALCHEMY_ENGINE_OPTIONS` for each of the databases defined in `SQLALCHEMY_BINDS`?
I ended up resolving the issue by overriding `apply_driver_hacks`: ``` class SQLiteAlchemy(SQLAlchemy): def apply_driver_hacks(self, app, info, options): options.update({ 'isolation_level': 'AUTOCOMMIT', 'encoding': 'latin1', 'echo': True }) super(SQLiteAlchemy, self).apply_driver_hacks(app, info, options) db...
Same issue here, I get the same problem whether I use "current_user.is_authenticated" or "current_user.is_authenticated()".