From fc268c8648d0d0375d01d36aa1f05f1172ff1566 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Fri, 9 Apr 2021 13:17:46 +0430 Subject: [PATCH] Fixed #32535 -- Added note about DEBUG_PROPAGATE_EXCEPTIONS setting to middleware docs. --- 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 ac440a9fca6..49fbde9dc40 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