aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/server
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-07-23 16:32:25 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-07-23 16:32:25 -0700
commit67ab91052d74f908988ec0abb830d6f012188217 (patch)
tree9aa5cbf30f1ffb4e4df63cb70e3259a9d8a57f70 /test/cpp/server
parent1f3e6c1ebed11e1477be01c57f3be4ab1d0af00b (diff)
Start off with zero reserve threads to make sure that that case works
Diffstat (limited to 'test/cpp/server')
-rw-r--r--test/cpp/server/dynamic_thread_pool_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/server/dynamic_thread_pool_test.cc b/test/cpp/server/dynamic_thread_pool_test.cc
index 615b547077..63b603b8f7 100644
--- a/test/cpp/server/dynamic_thread_pool_test.cc
+++ b/test/cpp/server/dynamic_thread_pool_test.cc
@@ -42,7 +42,7 @@ namespace grpc {
class DynamicThreadPoolTest : public ::testing::Test {
public:
- DynamicThreadPoolTest() : thread_pool_(4) {}
+ DynamicThreadPoolTest() : thread_pool_(0) {}
protected:
DynamicThreadPool thread_pool_;