From 3b973898337367c6c8cb8733718c93b7a719182c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 8 Sep 2020 18:29:01 +0200 Subject: [PATCH] asgi: revert ignore lifespan requests, remove healthcheck events from sentry fixes PASSBOOK-5K --- passbook/root/asgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passbook/root/asgi.py b/passbook/root/asgi.py index b3d6936e5..8954e577f 100644 --- a/passbook/root/asgi.py +++ b/passbook/root/asgi.py @@ -119,6 +119,6 @@ class ASGILogger: ) -application = ASGILogger( - guarantee_single_callable(SentryAsgiMiddleware(get_default_application())) +application = SentryAsgiMiddleware( + ASGILogger(guarantee_single_callable(get_default_application())) )