From 0abbdc8ef635ba5b2eeb0145f4a07e0fe3956d32 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Fri, 9 Apr 2021 13:17:46 +0430 Subject: [PATCH] [3.2.x] Fixed #32535 -- Added note about DEBUG_PROPAGATE_EXCEPTIONS setting to middleware docs. Backport of fc268c8648d0d0375d01d36aa1f05f1172ff1566 from main --- docs/topics/http/middleware.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt index 1626d16992a..aa89f79e0cf 100644 --- a/docs/topics/http/middleware.txt +++ b/docs/topics/http/middleware.txt @@ -286,6 +286,9 @@ if the very next middleware in the chain raises an that exception; instead it will get an :class:`~django.http.HttpResponse` object with a :attr:`~django.http.HttpResponse.status_code` of 404. +You can set :setting:`DEBUG_PROPAGATE_EXCEPTIONS` to ``True`` to skip this +conversion and propagate exceptions upwards. + .. _async-middleware: Asynchronous support