-
-
Notifications
You must be signed in to change notification settings - Fork 944
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(resp): add option to disable XML serialization of errors (#2356)
* feat: add option to enable xml serialization on errors. The option is on by default * chore: add coverage to missing branch * test: fix failing test * chore: review feedback * docs: improve documentation
- Loading branch information
Showing
6 changed files
with
130 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Added a new flag :attr:`~falcon.ResponseOptions.xml_error_serialization` that | ||
can be used to disable XML serialization of :class:`~falcon.HTTPError` when | ||
using the default error serializer (and the client preferred it). | ||
This flag currently defaults to ``True``, keeping the same behavior as the previous | ||
Falcon series; Falcon 5.0 will change the default to ``False``, with the objective of | ||
completely removing support for it in a future version. | ||
User that whish to retain support for XML serialization of the errors in the default | ||
error serializer should add an XML media handler. | ||
|
||
Deprecated the :meth:`~falcon.HTTPError.to_xml` method. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters