Skip to content

Commit

Permalink
Merge pull request grpc#14600 from vjpai/sst
Browse files Browse the repository at this point in the history
Thread name needs to only be alphanumeric+underscore+dash
  • Loading branch information
vjpai committed Mar 6, 2018
2 parents 50cecca + 809cf96 commit cab01db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/thread_manager/thread_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ThreadManager::WorkerThread::WorkerThread(ThreadManager* thd_mgr)
// Make thread creation exclusive with respect to its join happening in
// ~WorkerThread().
thd_ = grpc_core::Thread(
"sync server thread",
"grpcpp_sync_server",
[](void* th) { static_cast<ThreadManager::WorkerThread*>(th)->Run(); },
this);
thd_.Start();
Expand Down

0 comments on commit cab01db

Please sign in to comment.