fix: spelling mistakes (#594)

Co-authored-by: Aliaksandr Valialkin <valyala@gmail.com>
This commit is contained in:
BigFish 2020-07-01 06:35:26 +08:00 committed by Aliaksandr Valialkin
parent 618bcc818c
commit aa26b94f33

View file

@ -85,7 +85,7 @@ func (s *VMStorage) Query(ctx context.Context, query string) ([]Metric, error) {
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
body, _ := ioutil.ReadAll(resp.Body)
return nil, fmt.Errorf("datasource returns unxeprected response code %d for %s with err %w; reponse body: %s", resp.StatusCode, req.URL, err, body)
return nil, fmt.Errorf("datasource returns unexpected response code %d for %s with err %w. Reponse body %s", resp.StatusCode, req.URL, err, body)
}
r := &response{}
if err := json.NewDecoder(resp.Body).Decode(r); err != nil {