app/vmselect/netstorage: typo fix in a comment inside SearchMetricNames func

This commit is contained in:
Aliaksandr Valialkin 2020-11-18 01:35:22 +02:00
parent c6adcafedb
commit ea4afb201b

View File

@ -1270,7 +1270,7 @@ func SearchMetricNames(at *auth.Token, denyPartialResponse bool, sq *storage.Sea
metricNames := make(map[string]struct{}) metricNames := make(map[string]struct{})
for i := 0; i < len(storageNodes); i++ { for i := 0; i < len(storageNodes); i++ {
// There is no need in timer here, since all the goroutines executing // There is no need in timer here, since all the goroutines executing
// sn.processSearchQuery must be finished until the deadline. // sn.processSearchMetricNames must be finished until the deadline.
nr := <-resultsCh nr := <-resultsCh
if nr.err != nil { if nr.err != nil {
errors = append(errors, nr.err) errors = append(errors, nr.err)