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

This commit is contained in:
Donovan Hide
2026-02-20 03:56:58 +09:00
committed by tequ
parent eda065c41c
commit 76139db44e

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