Skip to content

Commit

Permalink
Fix a thread name
Browse files Browse the repository at this point in the history
  • Loading branch information
vjpai committed Mar 6, 2018
1 parent cab01db commit 02b64f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/server/dynamic_thread_pool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace grpc {

DynamicThreadPool::DynamicThread::DynamicThread(DynamicThreadPool* pool)
: pool_(pool),
thd_("dynamic thread pool thread",
thd_("grpcpp_dynamic_pool",
[](void* th) {
static_cast<DynamicThreadPool::DynamicThread*>(th)->ThreadFunc();
},
Expand Down

0 comments on commit 02b64f5

Please sign in to comment.