asgi: revert ignore lifespan requests, remove healthcheck events from sentry

fixes PASSBOOK-5K
This commit is contained in:
Jens Langhammer 2020-09-08 18:29:01 +02:00
parent 102d536a72
commit 3b97389833
1 changed files with 2 additions and 2 deletions

View File

@ -119,6 +119,6 @@ class ASGILogger:
)
application = ASGILogger(
guarantee_single_callable(SentryAsgiMiddleware(get_default_application()))
application = SentryAsgiMiddleware(
ASGILogger(guarantee_single_callable(get_default_application()))
)