File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1241,14 +1241,13 @@ def start_streamed_span(
12411241 if parent_span is None or isinstance (parent_span , NoOpStreamedSpan ):
12421242 parent_span = self .span or self .get_current_scope ().span # type: ignore
12431243
1244- # If no specific parent_span was provided and there is no currently
1244+ # If no eligible parent_span was provided and there is no currently
12451245 # active span, this is a segment
12461246 if parent_span is None :
12471247 propagation_context = self .get_active_propagation_context ()
12481248
12491249 if is_ignored_span (name , attributes ):
12501250 return NoOpStreamedSpan (scope = self )
1251- # TODO[span-first]: emit "ignored" client report
12521251
12531252 return StreamedSpan (
12541253 name = name ,
@@ -1266,8 +1265,6 @@ def start_streamed_span(
12661265 if is_ignored_span (name , attributes ) or isinstance (
12671266 parent_span , NoOpStreamedSpan
12681267 ):
1269- # TODO[span-first]: emit "ignored" client report
1270- # also add tests for it
12711268 return NoOpStreamedSpan ()
12721269
12731270 return StreamedSpan (
You can’t perform that action at this time.
0 commit comments