summaryrefslogtreecommitdiff
path: root/docs/howto/error-reporting.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-17 12:09:32 +0100
committerGitHub <noreply@github.com>2023-11-17 12:09:32 +0100
commit594873befbbec13a2d9a048a361757dd3cf178da (patch)
tree80d44e8c91d6b9e73a790de38400133a6d45946c /docs/howto/error-reporting.txt
parent6daf86058bb6fb922eb3fe3abae6f5c0e645020c (diff)
Removed obsolete warnings about asgiref.sync adapters with sensitive variables.
Django 5.0+ required asgiref 3.7+, and this warning is obsolete for asgiref 3.7+ since https://github.com/django/asgiref/commit/be6635e0e79009e55cf7a999614186f061f9f09b.
Diffstat (limited to 'docs/howto/error-reporting.txt')
-rw-r--r--docs/howto/error-reporting.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt
index 74e11a6951..84fe3cb768 100644
--- a/docs/howto/error-reporting.txt
+++ b/docs/howto/error-reporting.txt
@@ -194,17 +194,6 @@ filtered out of error reports in a production environment (that is, where
def process_info(user):
...
- .. warning::
-
- Due to the machinery needed to cross the sync/async boundary,
- :func:`~asgiref.sync.sync_to_async` and
- :func:`~asgiref.sync.async_to_sync` are **not** compatible with
- ``sensitive_variables()``.
-
- If using these adapters with sensitive variables, ensure to audit
- exception reporting, and consider implementing a :ref:`custom filter
- <custom-error-reports>` if necessary.
-
.. versionchanged:: 5.0
Support for wrapping ``async`` functions was added.