From c588dfb51f36dd688a594e1152ac0e9a534033cf Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Wed, 4 Oct 2023 15:03:41 +0200 Subject: [PATCH] Remove mention of Falcon from ASGI docs (#8122) (We do not support ASGI Falcon apps)[https://github.com/getsentry/sentry-python/blob/b31d498861fbcf33d96808170120ed6ea6935bc8/sentry_sdk/integrations/falcon.py#L213] in our integration, so we should not be mentioning it in our ASGI docs, since the Falcon integration does nothing when it detects it is being used with an ASGI app --- src/platforms/python/common/integrations/asgi/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/python/common/integrations/asgi/index.mdx b/src/platforms/python/common/integrations/asgi/index.mdx index ad6839873f163..9401b67720c68 100644 --- a/src/platforms/python/common/integrations/asgi/index.mdx +++ b/src/platforms/python/common/integrations/asgi/index.mdx @@ -7,7 +7,7 @@ The ASGI middleware can be used to instrument any [ASGI](https://asgi.readthedoc -If you use an ASGI framework, please use our specific integrations for [FastAPI](/platforms/python/integrations/fastapi/), [Starlette](/platforms/python/integrations/starlette/), [Falcon](/platforms/python/integrations/falcon/), [Quart](/platforms/python/integrations/quart/), and [Sanic](/platforms/python/integrations/sanic/) instead of this ASGI middleware as those are easier to use and capture more useful information. +If you use an ASGI framework, please use our specific integrations for [FastAPI](/platforms/python/integrations/fastapi/), [Starlette](/platforms/python/integrations/starlette/), [Quart](/platforms/python/integrations/quart/), and [Sanic](/platforms/python/integrations/sanic/) instead of this ASGI middleware as those are easier to use and capture more useful information.