app/vmselect/prometheus: typo fix after bf0e3ad2171219b7883b149999c4dc0ac15b9797

This commit is contained in:
Aliaksandr Valialkin 2021-12-17 11:52:04 +02:00
parent 7c3239966e
commit c2b0a6109b
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -161,7 +161,7 @@ func ExportCSVHandler(startTime time.Time, at *auth.Token, w http.ResponseWriter
// Unconditionally deny partial response for the exported data,
// since users usually expect that the exported data is full.
denyPartialResponse := true
rss, err := netstorage.ProcessSearchQuery(at, denyPartialResponse, sq, true, deadline)
rss, _, err := netstorage.ProcessSearchQuery(at, denyPartialResponse, sq, true, deadline)
if err != nil {
return fmt.Errorf("cannot fetch data for %q: %w", sq, err)
}