diff options
-rwxr-xr-x | static_pool_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static_pool_test.go b/static_pool_test.go index 15545e9a..9eb5de15 100755 --- a/static_pool_test.go +++ b/static_pool_test.go @@ -16,8 +16,8 @@ import ( var cfg = PoolConfig{ NumWorkers: int64(runtime.NumCPU()), - AllocateTimeout: time.Second, - DestroyTimeout: time.Second, + AllocateTimeout: time.Second * 5, + DestroyTimeout: time.Second * 5, } func Test_NewPool(t *testing.T) { |