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

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

View file

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