We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a46cf commit eca6d7bCopy full SHA for eca6d7b
1 file changed
src/backend/v4/api/router.py
@@ -1405,13 +1405,6 @@ async def get_plans(request: Request):
1405
user_id=user_id, team_id=current_team.team_id, status=PlanStatus.completed
1406
)
1407
1408
- # Attach session_id to span if plans exist
1409
- if all_plans and len(all_plans) > 0 and hasattr(all_plans[0], 'session_id'):
1410
- span = trace.get_current_span()
1411
- if span:
1412
- # Use first plan's session_id as representative
1413
- span.set_attribute("session_id", all_plans[0].session_id)
1414
-
1415
return all_plans
1416
1417
0 commit comments