app/vmselect/netstorage: run make fmt after 58326dbf25

This commit is contained in:
Aliaksandr Valialkin 2023-09-10 15:18:15 +02:00
parent 973c74df55
commit 9c3a37597c
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -1757,7 +1757,7 @@ func (snr *storageNodesRequest) collectResults(partialResultsCounter *metrics.Co
// Returns 503 status code for partial response, so the caller could retry it if needed.
err = &httpserver.ErrorWithStatusCode{
Err: err,
Err: err,
StatusCode: http.StatusServiceUnavailable,
}
return false, err
@ -1788,7 +1788,7 @@ func (snr *storageNodesRequest) collectResults(partialResultsCounter *metrics.Co
// Return only the first error, since it has no sense in returning all errors.
// Returns 503 status code for partial response, so the caller could retry it if needed.
err := &httpserver.ErrorWithStatusCode{
Err: errsPartial[0],
Err: errsPartial[0],
StatusCode: http.StatusServiceUnavailable,
}
return false, err