fix(membench): explicitly ignore resp.Body.Close() error after io.ReadAll
This commit is contained in:
parent
1260fd8e2f
commit
14c9a1f1f8
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ func (c *LLMClient) Complete(ctx context.Context, systemPrompt, userPrompt strin
|
||||||
}
|
}
|
||||||
|
|
||||||
respBody, lastErr = io.ReadAll(resp.Body)
|
respBody, lastErr = io.ReadAll(resp.Body)
|
||||||
resp.Body.Close()
|
_ = resp.Body.Close()
|
||||||
if lastErr != nil {
|
if lastErr != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue