From 678c8aecf8841170ef3bf950fe0546208dd4720d Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Thu, 26 Feb 2026 11:34:38 -0500 Subject: [PATCH 1/2] Update python-uwsgi-warning.mdx Related to changes that needed to be made here: https://github.com/getsentry/sentry-python/pull/5556 --- includes/python-uwsgi-warning.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/python-uwsgi-warning.mdx b/includes/python-uwsgi-warning.mdx index 3325b5ca43722..fad02a7e280d1 100644 --- a/includes/python-uwsgi-warning.mdx +++ b/includes/python-uwsgi-warning.mdx @@ -4,4 +4,6 @@ If you're using uWSGI, note that it doesn't support threads by default. This mig To enable threading support in uWSGI, make sure you have both `--enable-threads` and `--py-call-uwsgi-fork-hooks` on. +Note that automatic tracing on file-like responses when `offloading` is enabled is disabled. If you wish to enable tracing on these types of responses, you will need to manually instrument them. + From 31472af076a860cb7ef528c65bbbc09037ca84af Mon Sep 17 00:00:00 2001 From: Erica Pisani Date: Thu, 26 Feb 2026 11:42:17 -0500 Subject: [PATCH 2/2] Update python-uwsgi-warning.mdx --- includes/python-uwsgi-warning.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/python-uwsgi-warning.mdx b/includes/python-uwsgi-warning.mdx index fad02a7e280d1..e93c8a8051f11 100644 --- a/includes/python-uwsgi-warning.mdx +++ b/includes/python-uwsgi-warning.mdx @@ -4,6 +4,6 @@ If you're using uWSGI, note that it doesn't support threads by default. This mig To enable threading support in uWSGI, make sure you have both `--enable-threads` and `--py-call-uwsgi-fork-hooks` on. -Note that automatic tracing on file-like responses when `offloading` is enabled is disabled. If you wish to enable tracing on these types of responses, you will need to manually instrument them. +Note that automatic tracing on file-like responses when `offloading` is configured is disabled (see [here](https://github.com/getsentry/sentry-python/pull/5556) for why). If you wish to enable tracing on these types of responses, you will need to manually instrument them.