app/vmselect/netstorage: remove duplicate see word from the error message

This is a follow-up for ac6c40e896

Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4827
This commit is contained in:
Aliaksandr Valialkin 2023-08-14 02:05:18 -07:00
parent ac6c40e896
commit 214be01dfa
No known key found for this signature in database
GPG Key ID: A72BEC6CD3D0DED1

View File

@ -1244,7 +1244,7 @@ func setupTfss(qt *querytracer.Tracer, tr storage.TimeRange, tagFilterss [][]sto
if len(paths) >= maxMetrics {
return nil, fmt.Errorf("more than %d time series match Graphite query %q; "+
"either narrow down the query or increase the corresponding -search.max* command-line flag value; "+
"see see https://docs.victoriametrics.com/#resource-usage-limits", maxMetrics, query)
"see https://docs.victoriametrics.com/#resource-usage-limits", maxMetrics, query)
}
tfs.AddGraphiteQuery(query, paths, tf.IsNegative)
continue