Codebase list python-webargs / 75b564e
Merge pull request #525 from sirosen/warn-if-validation-error-noerr Add a warning if validation errors are suppressed Stephen Rosen authored 3 years ago GitHub committed 3 years ago
1 changed file(s) with 4 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
268268 error_status_code=error_status_code,
269269 error_headers=error_headers,
270270 )
271 warnings.warn(
272 "_on_validation_error hook did not raise an exception and flow "
273 "of control returned to parse(). You may get unexpected results"
274 )
271275 return data
272276
273277 def get_default_request(self):