cerberus.schema.SchemaError when VALIDATE_FILTERS = True #1154
Comments
From the error you get, I would guess that the Validator being used is not a |
I used the default configuration def create_app():
settings_module = os.environ.get('EVE_SETTINGS_MODULE')
app = Eve(settings=settings_module)
register_blueprints(app)
register_hooks(app)
register_cli(app)
register_teardowns(app)
return app |
My configuration ALLOWED_FILTERS = ['*']
VALIDATE_FILTERS = True |
Ah I see, the missing piece of information was |
Should be fixed now. Thanks! |
raise SchemaError(self.schema_validator.errors) |
Code
https://github.com/pyeve/eve-demo
Request
Response
Pipfile
Pipfile.lock
The text was updated successfully, but these errors were encountered: