prober: used keyed initializer for LimitedReader.

Reported by go vet.

Signed-off-by: David Anderson <danderson@tailscale.com>
pull/4301/head
David Anderson 2 years ago committed by Dave Anderson
parent 909f40da84
commit 7c7f37342f

@ -49,7 +49,7 @@ func probeHTTP(ctx context.Context, url string, want []byte) error {
return fmt.Errorf("fetching %q: status code %d, want 200", url, resp.StatusCode)
}
bs, err := io.ReadAll(&io.LimitedReader{resp.Body, maxHTTPBody})
bs, err := io.ReadAll(io.LimitReader(resp.Body, maxHTTPBody))
if err != nil {
return fmt.Errorf("reading body of %q: %w", url, err)
}

Loading…
Cancel
Save