We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As explained in the Documentation I set up a default value for the validation options in the configuration file.
I try to add a resource not providing any input in the resource field for validation options, and this leads to a Server error.
The Server error is "TypeError: expected string or buffer" generated from the following line of code.
So this should take into account the case where the value is null.
I've added this as a solution:
`
if value: provided_options = json.loads(value) default_options.update(provided_options)
This should solve the issue. Should I submit a PR?
Please preserve this line to notify @amercader (maintainer of this repository)
The text was updated successfully, but these errors were encountered:
Merge pull request ckan#48 from qld-gov-au/QOLDEV-323-ckan-2.10
9238ff7
QOLDEV-323 prepare for CKAN 2.10
No branches or pull requests
Overview
As explained in the Documentation I set up a default value for the validation options in the configuration file.
I try to add a resource not providing any input in the resource field for validation options, and this leads to a Server error.
The Server error is "TypeError: expected string or buffer" generated from the following line of code.
So this should take into account the case where the value is null.
I've added this as a solution:
`
`
This should solve the issue. Should I submit a PR?
Please preserve this line to notify @amercader (maintainer of this repository)
The text was updated successfully, but these errors were encountered: