mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
fix bug missing an error. (#7020)
Signed-off-by: johncming <johncming@yahoo.com>
This commit is contained in:
parent
bdc45c2b9e
commit
51c824543b
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue