Skip to content

Commit 087dee4

Browse files
committed
Hack around rebasing issue - we need to work out stats at some point....
1 parent 8addafb commit 087dee4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tracer/src/Datadog.Trace/Agent/StatsAggregator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ internal bool ShouldFilterTrace(in SpanCollection trace)
199199
if (localRoot is not null && trace.ContainsSpanId(localRoot.SpanId, trace.Count - 1))
200200
{
201201
// localRoot is in the trace chunk, so we can apply the filter directly
202-
return !filter.ShouldKeepTrace(localRoot);
202+
return !filter.ShouldKeepTrace((Span)localRoot);
203203
}
204204

205205
// local root isn't in the trace chunk (can happen with partial flushing)

0 commit comments

Comments
 (0)