-
-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLAlchemy 0 queries even for Flask-SQLAlchemy #78
Comments
Are you running the app in "debug" mode? (You can look for DEBUG in the Config panel.) Flask-SQLAlchemy captures queries in debug mode by default, but if that is false, you'll need to also set the I know that's not obvious, so I'm working on a patch that will display better help in the SQLAlchemy panel if it notices common problems that would prevent capturing the SQL queries. If |
I've pushed an update 61d1fc2 that will detect common setup issues with Flask-SQLAlchemy and display steps to fix the query recording. I'm assuming you're just missing the If you have another issue please reopen with more details. |
Facing the same issue. SQLAlchemy - 0 queries. DEBUG is True. Edit: I think setting |
Anyone else experiencing this?
Meanwhile I'll stick to
SQLALCHEMY_ECHO = True
, too bad, the toolbar is looking good and all other panels are working but I'm only interested in the queries.The text was updated successfully, but these errors were encountered: