Close the body after reading the response body information (#5907)
Signed-off-by: Fish-pro <zechun.chen@daocloud.io>
This commit is contained in:
parent
8a0d3ba3ca
commit
156da74ad3
2 changed files with 3 additions and 0 deletions
|
@ -61,6 +61,7 @@ func TestCustomHTTPRequestValidator(t *testing.T) {
|
||||||
if res.StatusCode != tc.expected {
|
if res.StatusCode != tc.expected {
|
||||||
t.Error("unexpected HTTP code", res.StatusCode)
|
t.Error("unexpected HTTP code", res.StatusCode)
|
||||||
}
|
}
|
||||||
|
res.Body.Close()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,6 +123,7 @@ func TestReloadMetricsHealth(t *testing.T) {
|
||||||
}
|
}
|
||||||
const proc = "coredns_build_info"
|
const proc = "coredns_build_info"
|
||||||
metrics, _ := io.ReadAll(resp.Body)
|
metrics, _ := io.ReadAll(resp.Body)
|
||||||
|
resp.Body.Close()
|
||||||
if !bytes.Contains(metrics, []byte(proc)) {
|
if !bytes.Contains(metrics, []byte(proc)) {
|
||||||
t.Errorf("Failed to see %s in metric output", proc)
|
t.Errorf("Failed to see %s in metric output", proc)
|
||||||
}
|
}
|
||||||
|
@ -135,6 +136,7 @@ func collectMetricsInfo(addr string, procs ...string) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
metrics, _ := io.ReadAll(resp.Body)
|
metrics, _ := io.ReadAll(resp.Body)
|
||||||
|
resp.Body.Close()
|
||||||
for _, p := range procs {
|
for _, p := range procs {
|
||||||
if !bytes.Contains(metrics, []byte(p)) {
|
if !bytes.Contains(metrics, []byte(p)) {
|
||||||
return fmt.Errorf("failed to see %s in metric output \n%s", p, metrics)
|
return fmt.Errorf("failed to see %s in metric output \n%s", p, metrics)
|
||||||
|
|
Loading…
Add table
Reference in a new issue