File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
python/src/etos_api/routers Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ async def start_etos(
6666 :rtype: dict
6767 """
6868 with TRACER .start_as_current_span ("start-etos" , context = ctx ) as span :
69- return await _start (etos , span , ctx )
69+ return await _start (etos , span , otel_context . get_current () )
7070
7171
7272@ETOSV0 .delete ("/etos/{suite_id}" , tags = ["etos" ], response_model = AbortEtosResponse )
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ async def start_testrun(
7171 :rtype: dict
7272 """
7373 with TRACER .start_as_current_span ("start-etos" , context = ctx ) as span :
74- return await _create_testrun (etos , span , ctx )
74+ return await _create_testrun (etos , span , otel_context . get_current () )
7575
7676
7777@ETOSV1ALPHA .delete ("/testrun/{suite_id}" , tags = ["etos" ], response_model = AbortTestrunResponse )
You can’t perform that action at this time.
0 commit comments