mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vmselect/promql: typo fix after 992f36702f
This commit is contained in:
parent
c35b63cd0c
commit
cd422a5435
1 changed files with 1 additions and 3 deletions
|
@ -307,9 +307,7 @@ func evalTransformFunc(qt *querytracer.Tracer, ec *EvalConfig, fe *metricsql.Fun
|
||||||
}
|
}
|
||||||
rv, err := tf(tfa)
|
rv, err := tf(tfa)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, &UserReadableError{
|
return nil, fmt.Errorf(`cannot evaluate %q: %w`, fe.AppendString(nil), err)
|
||||||
Err: fmt.Errorf(`cannot evaluate %q: %w`, fe.AppendString(nil), err),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return rv, nil
|
return rv, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue