From cac45cc430573462233e2f71859374d7c5b3ca5a Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Mon, 20 Apr 2026 14:47:55 +0100 Subject: [PATCH] fix(telemetry): pass name_ through CallData::clone() Without this, cloned CallData instances (created for the next incoming gRPC request) would have an empty name_, making subsequent span attrs blank. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/xrpld/app/main/GRPCServer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xrpld/app/main/GRPCServer.cpp b/src/xrpld/app/main/GRPCServer.cpp index c93a487694..67db0de9f2 100644 --- a/src/xrpld/app/main/GRPCServer.cpp +++ b/src/xrpld/app/main/GRPCServer.cpp @@ -82,7 +82,8 @@ GRPCServerImpl::CallData::clone() forward_, requiredCondition_, loadType_, - secureGatewayIPs_); + secureGatewayIPs_, + name_); } template