1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

add a way to configure error treatment for Query and Path extractors (#550)

* add a way to configure error treatment for Query extractor

* allow error handler to be customized for Path extractor
This commit is contained in:
François
2018-10-20 05:43:43 +02:00
committed by Douman
parent 960274ada8
commit 42d5d48e71
2 changed files with 114 additions and 12 deletions

View File

@ -6,6 +6,10 @@
* HttpServer now treats streaming bodies the same for HTTP/1.x protocols. #549
### Added
* Add method to configure custom error handler to `Query` and `Path` extractors.
## [0.7.13] - 2018-10-14
### Fixed