Skip to content

Commit

Permalink
[BUILD] Fix merge conflict (#6033)
Browse files Browse the repository at this point in the history
## Summary of changes
Fix merge conflict

## Reason for change
Multiple merges created a conflict that broke the build
  • Loading branch information
daniel-romano-DD authored Sep 14, 2024
1 parent bf96521 commit 909d318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracer/src/Datadog.Trace/Iast/Location.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ internal void ReportStack(Span? span)
if (span is not null && StackId is not null && _stack is not null && _stack.FrameCount > 0)
{
#pragma warning disable CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types. Some TFMs (pre net 6) don't have null annotations
var stack = StackReporter.GetStack(Security.Instance.Settings.MaxStackTraceDepth, StackId, _stack.GetFrames());
var stack = StackReporter.GetStack(Security.Instance.Settings.MaxStackTraceDepth, Security.Instance.Settings.MaxStackTraceDepthTopPercent, StackId, _stack.GetFrames());
#pragma warning restore CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.
if (stack is not null)
{
Expand Down

0 comments on commit 909d318

Please sign in to comment.