From 20b9f2d8f05af322f780df910778b6aefc19e02b Mon Sep 17 00:00:00 2001 From: michalsn Date: Mon, 2 Dec 2024 07:35:24 +0100 Subject: [PATCH 1/2] docs: update note about required filters --- user_guide_src/source/incoming/filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/incoming/filters.rst b/user_guide_src/source/incoming/filters.rst index 737fd191392a..52f31315ac4f 100644 --- a/user_guide_src/source/incoming/filters.rst +++ b/user_guide_src/source/incoming/filters.rst @@ -132,7 +132,7 @@ They are special filters that are applied to every request made by the framework. They are applied before and after other kinds of filters that are explained below. -.. note:: The Required Filters are always executed even if a route does not exist. +.. note:: The Required Filters are always executed. However, if the route does not exist, only the Before Filter is executed. You should take care with how many you use here, since it could have performance implications to have too many run on every request. But the filters set by default From 40ef26de0d2fae2cb24b494d029f8f2f4a1f89f5 Mon Sep 17 00:00:00 2001 From: Michal Sniatala Date: Mon, 2 Dec 2024 23:15:59 +0100 Subject: [PATCH 2/2] Update user_guide_src/source/incoming/filters.rst Co-authored-by: John Paul E. Balandan, CPA --- user_guide_src/source/incoming/filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/incoming/filters.rst b/user_guide_src/source/incoming/filters.rst index 52f31315ac4f..14b110e34a12 100644 --- a/user_guide_src/source/incoming/filters.rst +++ b/user_guide_src/source/incoming/filters.rst @@ -132,7 +132,7 @@ They are special filters that are applied to every request made by the framework. They are applied before and after other kinds of filters that are explained below. -.. note:: The Required Filters are always executed. However, if the route does not exist, only the Before Filter is executed. +.. note:: The Required Filters are always executed. However, if the route does not exist, only the Before Filters are executed. You should take care with how many you use here, since it could have performance implications to have too many run on every request. But the filters set by default