mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vmselect/promql: typo fix after 0771d57860
This commit is contained in:
parent
0771d57860
commit
65b9dcfcca
1 changed files with 1 additions and 1 deletions
|
@ -916,7 +916,7 @@ func removeEmptyValuesAndTimeseries(tss []netstorage.Result) []netstorage.Result
|
|||
dstValues := ts.Values[:0]
|
||||
// Do not re-use ts.Timestamps for dstTimestamps, since ts.Timestamps
|
||||
// may be shared among multiple time series.
|
||||
dstTimestamps := make([]int64{}, 0, len(ts.Timestamps))
|
||||
dstTimestamps := make([]int64, 0, len(ts.Timestamps))
|
||||
for j, v := range ts.Values {
|
||||
if math.IsNaN(v) {
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue