-
Notifications
You must be signed in to change notification settings - Fork 6
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
ConfigSchema type check bug #22
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Situation
When type checking a double as a number defined in a ConfigSchema, I got an error for invalid type (cf. envire/envire-envire_types#5 (comment)). Investigating the type of the item before the check in
has_corresponding_type
(see below) it seems like the type of the corresponding config item is undefined atconfig_item.getOrCreateAtom()->getType()
.configmaps/src/ConfigSchema.cpp
Lines 36 to 48 in 07324d9
Task
Ensure the type is set prior to calling
getType
or usetestType
for atomic types.The text was updated successfully, but these errors were encountered: