Skip to content

Commit d638a54

Browse files
peter-doggartPeter Doggart
and
Peter Doggart
authored
Update changelog and prepare for release. (#509)
Co-authored-by: Peter Doggart <[email protected]>
1 parent 7665fda commit d638a54

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Bug Fixes
3636
::
3737

3838
* Fix failing pypy python setup in github actions
39+
* Fix compatibility with upcoming release of Flask 2.3+. (#485) [jdieter]
3940

4041
.. _section-1.0.2:
4142
1.0.2

flask_restx/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ def handle_error(self, e):
685685
# client if a handler is configured for the exception.
686686
if (
687687
not isinstance(e, HTTPException)
688-
and current_app.propagate_exceptions
688+
and current_app.config.get("PROPAGATE_EXCEPTIONS", False)
689689
and not isinstance(e, tuple(self._own_and_child_error_handlers.keys()))
690690
):
691691

0 commit comments

Comments
 (0)