lib/opentsdbhttp: fix a typo preventing from using writeconcurrencylimiter (#4208)

This commit is contained in:
Haleygo 2023-04-27 15:22:42 +08:00 committed by Aliaksandr Valialkin
parent 19eaf17e11
commit 4c3cb7a7ad
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

View file

@ -33,7 +33,7 @@ var (
func Parse(req *http.Request, callback func(rows []opentsdbhttp.Row) error) error {
wcr := writeconcurrencylimiter.GetReader(req.Body)
defer writeconcurrencylimiter.PutReader(wcr)
r := io.Reader(req.Body)
r := io.Reader(wcr)
readCalls.Inc()
if req.Header.Get("Content-Encoding") == "gzip" {