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 GitHub
parent b21a55febf
commit 03150c8973
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" {