13025: Add request time metrics at /metrics and /metrics.json.
[arvados.git] / services / keepstore / bufferpool_test.go
index 7b51b643cea54ba0b5643a2bf84c4ccfed9bcd5f..21b03edd49b967356c74958b1a1d762851babb60 100644 (file)
@@ -1,8 +1,13 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
 package main
 
 import (
-       . "gopkg.in/check.v1"
        "time"
+
+       . "gopkg.in/check.v1"
 )
 
 var _ = Suite(&BufferPoolSuite{})
@@ -12,12 +17,12 @@ type BufferPoolSuite struct{}
 // Initialize a default-sized buffer pool for the benefit of test
 // suites that don't run main().
 func init() {
-       bufs = newBufferPool(maxBuffers, BlockSize)
+       bufs = newBufferPool(theConfig.MaxBuffers, BlockSize)
 }
 
 // Restore sane default after bufferpool's own tests
 func (s *BufferPoolSuite) TearDownTest(c *C) {
-       bufs = newBufferPool(maxBuffers, BlockSize)
+       bufs = newBufferPool(theConfig.MaxBuffers, BlockSize)
 }
 
 func (s *BufferPoolSuite) TestBufferPoolBufSize(c *C) {