Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(quart): Fix Quart integration (#3043)
The Quart integration was completely broken prior to this commit, as it caused every request to fail with a 500 error. The reason was that we were using the non-async `ensure_integration_enabled` decorator on the async `sentry_patched_asgi_app` function. This commit fixes the issue by removing the use of that decorator, instead replacing it with a manual check for the integration being enabled. Fixes GH-3040
- Loading branch information