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 tequ
parent 5e542f5215
commit 3e49ee604e

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();