Return error loading config on non-200 response
This commit is contained in:
parent
7dffb1b5f9
commit
1a81e49d05
|
@ -772,6 +772,11 @@ func fetchConfig(u *url.URL) ([]byte, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
return nil, fmt.Errorf("failed to retrieve remote config: %s", resp.Status)
|
||||||
|
}
|
||||||
|
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
return ioutil.ReadAll(resp.Body)
|
return ioutil.ReadAll(resp.Body)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue