-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ValueError: Object 'EXCLUDE' is not a valid value for the 'unknown' parameter #110
Comments
After playing around with the versions of marshmallow, I figured out, that the problem exists only when using version 3.17 of marshmallow in combination with dynamorm version 0.11.0. |
Using dynamorm 0.11.0 with marshmallow 3.15.0 worked for me. Got error with 3.16.0 and 3.17.0. |
Hi folks, I guess that this is a very simple to fix. I ran into the same issue using dynamorm 0.11.0 and marshmallow 3.20.1. I debugged a little bit the logic and the reason for the error is, that during the validation of the feed dynamorm is using and incorrect value for the
The
So changing the
or (better):
completely resolved the error. It seems that we are able to use things as expected then. How can I contribute the bugfix so that this wonderful library becomes more stable :)? |
NerdWalletOSS#110. Also bumping Python to >=3.9
I'm not quite sure why the example code from dynamorm documentation is not working...
Seems like the error is coming from the SchemaMeta class of Marshmallow (see: line 393 in marshmallow/schema.py)
It always jumps inside the validate_unknown_parameter_value function. Even if i use predefined unknown vars from Marshmallow documentation... Some one of you have maybe an idea?
The text was updated successfully, but these errors were encountered: