fix: Omit superfluous setCurrentThreadName call in GRPCServer.cpp (#5280)

This commit is contained in:
Donovan Hide
2025-02-10 17:08:36 +00:00
committed by Qi Zhao
parent f5dac74afb
commit 0376c7af60

View File

@@ -599,7 +599,6 @@ GRPCServer::start()
if (running_ = impl_.start(); running_)
{
thread_ = std::thread([this]() {
beast::setCurrentThreadName("rippled : GRPCServer");
// Start the event loop and begin handling requests
beast::setCurrentThreadName("rippled: grpc");
this->impl_.handleRpcs();