We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7665fda commit d638a54Copy full SHA for d638a54
CHANGELOG.rst
@@ -36,6 +36,7 @@ Bug Fixes
36
::
37
38
* Fix failing pypy python setup in github actions
39
+ * Fix compatibility with upcoming release of Flask 2.3+. (#485) [jdieter]
40
41
.. _section-1.0.2:
42
1.0.2
flask_restx/api.py
@@ -685,7 +685,7 @@ def handle_error(self, e):
685
# client if a handler is configured for the exception.
686
if (
687
not isinstance(e, HTTPException)
688
- and current_app.propagate_exceptions
+ and current_app.config.get("PROPAGATE_EXCEPTIONS", False)
689
and not isinstance(e, tuple(self._own_and_child_error_handlers.keys()))
690
):
691
0 commit comments