mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/opentsdbhttp: fix a typo preventing from using writeconcurrencylimiter (#4208)
This commit is contained in:
parent
b21a55febf
commit
03150c8973
1 changed files with 1 additions and 1 deletions
|
@ -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" {
|
||||
|
|
Loading…
Reference in a new issue