diff options
author | Wolfy-J <[email protected]> | 2018-01-23 20:36:34 -0500 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-01-23 20:36:34 -0500 |
commit | 3bd7706cace8744c12c7e471c82dccacd5293275 (patch) | |
tree | 9979cbdcfa77b3ba273a0b00a766d9f9d108efa1 | |
parent | 1c5eda0154bb41250fc7cf39b93cb9ffeab106f2 (diff) |
CS
-rw-r--r-- | pool_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pool_test.go b/pool_test.go index 88926a9b..67b93852 100644 --- a/pool_test.go +++ b/pool_test.go @@ -8,6 +8,7 @@ import ( "sync" "testing" "time" + "log" ) var cfg = Config{ @@ -185,7 +186,9 @@ func Benchmark_Pool_Echo_Batched(b *testing.B) { } wg.Wait() -} + + log.Println(p.Workers()) + } func Benchmark_Pool_Echo_Replaced(b *testing.B) { p, _ := NewPool( |