fix bug missing an error. (#7020)

Signed-off-by: johncming <johncming@yahoo.com>
This commit is contained in:
johncming 2020-03-21 20:05:19 +08:00 committed by GitHub
parent bdc45c2b9e
commit 51c824543b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -264,12 +264,22 @@ func Parse(content []byte) (*RuleGroups, []error) {
var (
groups RuleGroups
node ruleGroups
errs []error
)
err := yaml.Unmarshal(content, &groups)
_err := yaml.Unmarshal(content, &node)
if err != nil || _err != nil {
return nil, []error{err}
if err != nil {
errs = append(errs, err)
}
err = yaml.Unmarshal(content, &node)
if err != nil {
errs = append(errs, err)
}
if len(errs) > 0 {
return nil, errs
}
return &groups, groups.Validate(node)
}