mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
lib/storage: typo fixes in error messages: or -> of
This commit is contained in:
parent
ce2107bc52
commit
cc00a2c453
1 changed files with 2 additions and 2 deletions
|
@ -1866,7 +1866,7 @@ func (is *indexSearch) searchMetricIDs(tfss []*TagFilters, tr TimeRange, maxMetr
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if metricIDs.Len() > maxMetrics {
|
if metricIDs.Len() > maxMetrics {
|
||||||
return nil, fmt.Errorf("the number or unique timeseries exceeds %d; either narrow down the search or increase -search.maxUniqueTimeseries", maxMetrics)
|
return nil, fmt.Errorf("the number of unique timeseries exceeds %d; either narrow down the search or increase -search.maxUniqueTimeseries", maxMetrics)
|
||||||
}
|
}
|
||||||
// Stop the iteration, since we cannot find more metric ids with the remaining tfss.
|
// Stop the iteration, since we cannot find more metric ids with the remaining tfss.
|
||||||
break
|
break
|
||||||
|
@ -1875,7 +1875,7 @@ func (is *indexSearch) searchMetricIDs(tfss []*TagFilters, tr TimeRange, maxMetr
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if metricIDs.Len() > maxMetrics {
|
if metricIDs.Len() > maxMetrics {
|
||||||
return nil, fmt.Errorf("the number or matching unique timeseries exceeds %d; either narrow down the search or increase -search.maxUniqueTimeseries", maxMetrics)
|
return nil, fmt.Errorf("the number of matching unique timeseries exceeds %d; either narrow down the search or increase -search.maxUniqueTimeseries", maxMetrics)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if metricIDs.Len() == 0 {
|
if metricIDs.Len() == 0 {
|
||||||
|
|
Loading…
Reference in a new issue