You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can, I validated 2+ fields at the same time, and receive feedback, on 2+ errors at a given validation instance? The way I've implemented, it seems to catch only the first error. When I fix the first error, then run the voluptuous validation again, the next error is raised, and so forth. Is this generally how validation is implemented either internally with voluptuous, or how the error is caught?
Can, I validated 2+ fields at the same time, and receive feedback, on 2+ errors at a given validation instance? The way I've implemented, it seems to catch only the first error. When I fix the first error, then run the
voluptuous
validation again, the next error is raised, and so forth. Is this generally how validation is implemented either internally with voluptuous, or how the error is caught?I have the following schema:
If I were to validate my
schema
:premodel_settings: {'sv_kernel_type': u'linear', 'stream': 'False', 'session_type': u'model_generate', 'collection': u'collection-1', 'penalty': u'161528', 'model_type': u'svm', 'gamma': u'164'}
As follows:
It seems I'm only capturing one error twice:
I've commented my exact use case, on an issue, I've just recently quasi finished.
The text was updated successfully, but these errors were encountered: