-
Notifications
You must be signed in to change notification settings - Fork 1
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
Use ConfigSchema to validate the config map used for initialization #5
Comments
Open
validating minValue of motor types currently claims invalid data types:
This is the used configuration:
Maybe ConfigSchema.validate can't handle negative doubles? |
This was referenced Aug 29, 2024
This was fixed with rock-simulation/configmaps#22 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Situation
Currently the types check if all required keys are present in the given configmap using a conjunction. If it fails, a generic error message regarding missing keys is printed.
Task
For each type, define a config schema to be used by configmaps/ConfigSchema to validate the given config on construction of the type objects.
The text was updated successfully, but these errors were encountered: