From 8c38795cc1036e9cf88d7870b1813761eb50bddd Mon Sep 17 00:00:00 2001 From: Amey Date: Fri, 9 Jan 2026 14:28:50 -0500 Subject: [PATCH] fix: traceId in handle_create_eval_set_run --- src/uipath/_cli/_evals/_progress_reporter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/uipath/_cli/_evals/_progress_reporter.py b/src/uipath/_cli/_evals/_progress_reporter.py index 082adfd4c..6c924ccc6 100644 --- a/src/uipath/_cli/_evals/_progress_reporter.py +++ b/src/uipath/_cli/_evals/_progress_reporter.py @@ -382,8 +382,9 @@ async def handle_create_eval_set_run(self, payload: EvalSetRunCreatedEvent) -> N if current_span.is_recording(): current_span.set_attribute("eval_set_run_id", eval_set_run_id) - # Create and send parent trace for the evaluation set run + # Set trace_id and send parent trace for the evaluation set run if eval_set_run_id: + self.spans_exporter.trace_id = eval_set_run_id await self._send_parent_trace(eval_set_run_id, payload.eval_set_id) logger.debug(