Merge pull request #3968 from zjwzte/fix-magic-number

Fix magic number.
pull/4020/merge
Fabian Reinartz 2018-03-28 14:09:43 +02:00 committed by GitHub
commit 184b6e3767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ func newScrapePool(cfg *config.ScrapeConfig, app Appendable, logger log.Logger)
level.Error(logger).Log("msg", "Error creating HTTP client", "err", err)
}
buffers := pool.New(163, 100e6, 3, func(sz int) interface{} { return make([]byte, 0, sz) })
buffers := pool.New(1e3, 100e6, 3, func(sz int) interface{} { return make([]byte, 0, sz) })
ctx, cancel := context.WithCancel(context.Background())
sp := &scrapePool{